Files
Mango/src/mango.cr
T
Alex Ling 7c66b05872 - move the initialization of config/library/storage to mango.cr
- remove duplicate initialization of server in server.cr
2020-02-16 04:14:38 +00:00

12 lines
238 B
Crystal

require "./server"
require "./config"
require "./library"
require "./storage"
config = Config.load
library = Library.new config.library_path
storage = Storage.new config.db_path
server = Server.new config, library, storage
server.start