2023-06-25 10:30:39 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"flag"
|
|
|
|
"fmt"
|
2023-07-21 02:46:25 +00:00
|
|
|
"net/http"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"fusenapi/utils/auth"
|
2023-06-25 10:30:39 +00:00
|
|
|
|
|
|
|
{{.importPackages}}
|
|
|
|
)
|
|
|
|
|
|
|
|
var configFile = flag.String("f", "etc/{{.serviceName}}.yaml", "the config file")
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
flag.Parse()
|
|
|
|
|
|
|
|
var c config.Config
|
2023-07-12 02:22:03 +00:00
|
|
|
conf.MustLoad(*configFile, &c)
|
|
|
|
c.Timeout = int64(time.Second * 15)
|
2023-06-25 10:30:39 +00:00
|
|
|
|
2023-07-21 02:46:25 +00:00
|
|
|
server := rest.MustNewServer(c.RestConf, rest.WithCustomCors(auth.FsCors, func(w http.ResponseWriter) {
|
2023-07-11 11:43:46 +00:00
|
|
|
}))
|
2023-07-21 02:46:25 +00:00
|
|
|
|
2023-06-25 10:30:39 +00:00
|
|
|
defer server.Stop()
|
|
|
|
|
|
|
|
ctx := svc.NewServiceContext(c)
|
|
|
|
handler.RegisterHandlers(server, ctx)
|
|
|
|
|
|
|
|
fmt.Printf("Starting server at %s:%d...\n", c.Host, c.Port)
|
|
|
|
server.Start()
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// var testConfigFile = flag.String("f", "../etc/{{.serviceName}}.yaml", "the config file")
|
|
|
|
// var cnf config.Config
|
|
|
|
|
|
|
|
// func GetTestServer() *rest.Server {
|
|
|
|
// flag.Parse()
|
|
|
|
|
|
|
|
// conf.MustLoad(*testConfigFile, &cnf)
|
|
|
|
|
|
|
|
// server := rest.MustNewServer(cnf.RestConf)
|
|
|
|
// defer server.Stop()
|
|
|
|
|
|
|
|
// ctx := svc.NewServiceContext(cnf)
|
|
|
|
// handler.RegisterHandlers(server, ctx)
|
|
|
|
|
|
|
|
// fmt.Printf("Starting server at %s:%d...\n", cnf.Host, cnf.Port)
|
|
|
|
// return server
|
|
|
|
// }
|