1
0
mirror of synced 2024-11-22 20:36:01 +03:00
mg-transport-telegram/run.go

55 lines
905 B
Go
Raw Normal View History

package main
import (
"net/http"
"os"
"os/signal"
"syscall"
_ "github.com/golang-migrate/migrate/database/postgres"
_ "github.com/golang-migrate/migrate/source/file"
)
var (
config = LoadConfig("config.yml")
orm = NewDb(config)
logger = newLogger()
)
func init() {
parser.AddCommand("run",
"Run mg-telegram",
"Run mg-telegram.",
&RunCommand{},
)
}
// RunCommand struct
type RunCommand struct{}
// Execute command
func (x *RunCommand) Execute(args []string) error {
go start()
c := make(chan os.Signal, 1)
signal.Notify(c)
for sig := range c {
switch sig {
case os.Interrupt, syscall.SIGQUIT, syscall.SIGTERM:
orm.DB.Close()
return nil
default:
}
}
return nil
}
func start() {
setWrapperRoutes()
setTransportRoutes()
2018-05-18 18:11:09 +03:00
http.Handle("/web/", http.StripPrefix("/web/", http.FileServer(http.Dir("web"))))
http.ListenAndServe(config.HTTPServer.Listen, nil)
}