kemal/src/frank/config.cr

24 lines
297 B
Crystal
Raw Normal View History

2014-07-30 22:17:53 +00:00
module Frank
class Config
INSTANCE = Config.new
property ssl
property port
def initialize
@port = 3000
end
def scheme
ssl ? "https" : "http"
end
end
def self.config
yield Config::INSTANCE
end
def self.config
Config::INSTANCE
end
end