Initial commit

This commit is contained in:
2021-04-01 23:18:28 +02:00
commit 2bd6362268
27 changed files with 732 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
package scaffold.commands
import com.github.ajalt.clikt.core.CliktCommand
import scaffold.Generators
class ListCommand(private val generators: Generators) : CliktCommand("list") {
override fun run() = echo(generators.findAll().joinToString(" ") { it.last().toString() })
}