summaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea89/website/Command.kt
diff options
context:
space:
mode:
authornea <romangraef@loves.dicksinhisan.us>2021-12-07 05:28:25 +0100
committernea <romangraef@loves.dicksinhisan.us>2021-12-07 19:08:02 +0100
commit5843b02bad28bc82567c195ca0bb31515e3dbb36 (patch)
tree673f842605f37be928a36811ddd67ed8948afdab /src/main/kotlin/moe/nea89/website/Command.kt
parent6b44e60fc4efc23a30f16492bf9dc17aa30b66c5 (diff)
downloadneamoe-5843b02bad28bc82567c195ca0bb31515e3dbb36.tar.gz
neamoe-5843b02bad28bc82567c195ca0bb31515e3dbb36.tar.bz2
neamoe-5843b02bad28bc82567c195ca0bb31515e3dbb36.zip
uwu
Diffstat (limited to 'src/main/kotlin/moe/nea89/website/Command.kt')
-rw-r--r--src/main/kotlin/moe/nea89/website/Command.kt7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/main/kotlin/moe/nea89/website/Command.kt b/src/main/kotlin/moe/nea89/website/Command.kt
new file mode 100644
index 0000000..f896987
--- /dev/null
+++ b/src/main/kotlin/moe/nea89/website/Command.kt
@@ -0,0 +1,7 @@
+package moe.nea89.website
+
+interface Command {
+ val name: String
+ val aliases: Set<String>
+ fun run(console: KConsole, name: String, args: List<String>)
+} \ No newline at end of file