aboutsummaryrefslogtreecommitdiff
path: root/src/guff
diff options
context:
space:
mode:
Diffstat (limited to 'src/guff')
-rw-r--r--src/guff/run.cr16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/guff/run.cr b/src/guff/run.cr
new file mode 100644
index 0000000..2b7e966
--- /dev/null
+++ b/src/guff/run.cr
@@ -0,0 +1,16 @@
+require "./config"
+require "./model"
+require "./server"
+
+module Guff
+ def self.run(app, args)
+ # parse env and cli options
+ config = Config.new(app, args)
+
+ # create model
+ model = Model.new(config)
+
+ # create and run server
+ Server.run(model, config)
+ end
+end