aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/nekoweb.go
blob: 0904a6106f6991b12c13ec8e90aeb5ae3cea927f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package main

import (
	"neko/config"
	"neko/models"
	"neko/web"
	"os"
)

func main() {
	config.Read(os.Args[1])
	models.InitDB(config.Config.DBServer)
	web.Serve()
}