Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0
Ce dépôt a été archivé le 2022-05-07. Vous pouvez voir ses fichiers ou le cloner, mais pas ouvrir de ticket ou de demandes d'ajout, ni soumettre de changements.
nyaa-pantsu/main.go
akuma06 a456a5f9f2 Fixed parameters through command line for DB
config is now a singleton
can use config.GetInstance() to know the context
2017-05-06 17:37:56 +02:00

41 lignes
662 o
Go
Fichier exécutable

package main
import (
"bufio"
"fmt"
"github.com/ewhal/nyaa/config"
"github.com/ewhal/nyaa/router"
"github.com/ewhal/nyaa/util/log"
"net/http"
"os"
"time"
)
func RunServer(conf *config.Config) {
http.Handle("/", router.Router)
// Set up server,
srv := &http.Server{
Addr: fmt.Sprintf("%s:%d", conf.Host, conf.Port),
WriteTimeout: 15 * time.Second,
ReadTimeout: 15 * time.Second,
}
err := srv.ListenAndServe()
log.CheckError(err)
}
func main() {
conf := config.GetInstance()
if *config.PrintDefaults {
stdout := bufio.NewWriter(os.Stdout)
conf.Pretty(stdout)
stdout.Flush()
os.Exit(0)
} else {
RunServer(conf)
}
}