1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 16:28:12 -07:00
This commit is contained in:
Cedric Beust 2016-02-11 21:37:13 -08:00
parent ce102501b5
commit 0d3e464cee

View file

@ -7,8 +7,16 @@ import com.beust.kobalt.Args
* a new project). * a new project).
*/ */
interface IInitContributor { interface IInitContributor {
/**
* The name of this archetype. This is the name that will be looked up when passed to the --init
* argument.
*/
val name: String val name: String
/**
* Generate the files for this archetype. The parameter is the arguments that were passed to the kobaltw
* command.
*/
fun generateArchetype(args: Args) fun generateArchetype(args: Args)
} }