blob: b8e4675c92177ce5e2536f2128d11dcb28846974 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package moe.nea89.website
data class Command(
val name: String,
val aliases: Set<String>,
val runner: suspend ShellExecutionContext.() -> Unit,
)
fun command(name: String, vararg aliases: String, block: suspend ShellExecutionContext. () -> Unit) =
Command(name, aliases.toSet(), block)
|