Skip to content

Instantly share code, notes, and snippets.

module RepositoriesConfig {
// Define a class for repository options
class RepositoryOptions {
visibility: String;
is_template: Boolean;
gitignore_template: String?;
license_template: String?;
template: Template?;
}