aboutsummaryrefslogtreecommitdiff
path: root/src/guff.cr
blob: cfd020c442118420865eb3eea47303508c4accbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require "http/server"
require "ecr/macros"
require "json"
require "yaml"
require "secure_random"
require "sqlite3"

module Guff
  # TODO: think about versioning a bit (semantic, datestamp, etc)
  VERSION = "20160715"
end

require "./guff/**"

# allow cli invocation
Guff::CLI.run($0, ARGV)