summaryrefslogtreecommitdiff
path: root/src/bin/minorskulk.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/minorskulk.rs')
-rw-r--r--src/bin/minorskulk.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/bin/minorskulk.rs b/src/bin/minorskulk.rs
new file mode 100644
index 0000000..1609edb
--- /dev/null
+++ b/src/bin/minorskulk.rs
@@ -0,0 +1,9 @@
+use minor_skulk::build;
+
+#[rocket::main]
+async fn main() -> anyhow::Result<()> {
+ dotenv::dotenv().ok();
+
+ let _ = build().await?.launch().await?;
+ Ok(())
+}