Move server initialization to new server package

This commit is contained in:
2019-11-18 13:36:46 +09:00
parent 0b9dc8d353
commit e7c7e84334
4 changed files with 146 additions and 143 deletions

6
server/Main.go Normal file
View File

@ -0,0 +1,6 @@
package server
func Main() {
app := New()
app.Run()
}