mirror of
https://github.com/hkalexling/Mango.git
synced 2026-05-01 00:00:55 -04:00
7c66b05872
- remove duplicate initialization of server in server.cr
12 lines
238 B
Crystal
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
|