diff options
author | Paul Duncan <pabs@pablotron.org> | 2016-03-05 23:08:26 -0500 |
---|---|---|
committer | Paul Duncan <pabs@pablotron.org> | 2016-03-05 23:08:26 -0500 |
commit | 1e7f2784a13492da87c8351171e7355dd068bd79 (patch) | |
tree | fdd6b3e2f7c3b08ed6e971b7f00128c06eb29025 /src/guff/run.cr | |
parent | 0c003fc2985c5ce0a2d04026d63ab7265ce9af94 (diff) | |
download | old-guff-1e7f2784a13492da87c8351171e7355dd068bd79.tar.bz2 old-guff-1e7f2784a13492da87c8351171e7355dd068bd79.zip |
add api and test handlers, refactor config
Diffstat (limited to 'src/guff/run.cr')
-rw-r--r-- | src/guff/run.cr | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/guff/run.cr b/src/guff/run.cr index 2b7e966..90afbae 100644 --- a/src/guff/run.cr +++ b/src/guff/run.cr @@ -11,6 +11,6 @@ module Guff model = Model.new(config) # create and run server - Server.run(model, config) + Server.run(model) end end |