summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNatrixAeria <upezu@student.kit.edu>2020-09-16 18:19:20 +0200
committerNatrixAeria <upezu@student.kit.edu>2020-09-16 18:19:20 +0200
commitb5856c8a2221f12b8bb88561bd9722f0ca915023 (patch)
treedb021a277508237f65dbda7010ff4a7b6934d578 /src
Initial commit
Diffstat (limited to 'src')
-rw-r--r--src/config.rs1
-rw-r--r--src/main.rs10
2 files changed, 11 insertions, 0 deletions
diff --git a/src/config.rs b/src/config.rs
new file mode 100644
index 0000000..1fde118
--- /dev/null
+++ b/src/config.rs
@@ -0,0 +1 @@
+use serenity::framework::standard::CommandGroup;
diff --git a/src/main.rs b/src/main.rs
new file mode 100644
index 0000000..86fa40d
--- /dev/null
+++ b/src/main.rs
@@ -0,0 +1,10 @@
+use serenity::framework::StandardFramework;
+
+fn configure(conf: &mut serenity::framework::standard::Configuration) {}
+
+fn main() {
+ let framework = StandardFramework::new().configure(|c| {
+ configure(c);
+ c
+ });
+}