Albirew/nyaa-pantsu
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

49 lignes
815 B
Go
Brut Vue normale Historique

2017-05-02 12:39:53 +02:00
package main
import (
"bufio"
"fmt"
"flag"
"github.com/ewhal/nyaa/util/log"
"github.com/ewhal/nyaa/router"
"github.com/ewhal/nyaa/config"
2017-05-02 12:39:53 +02:00
"net/http"
"os"
2017-05-02 12:39:53 +02:00
"time"
)
func RunServer(conf *config.Config) {
http.Handle("/", router.Router)
2017-05-02 12:39:53 +02:00
// Set up server,
srv := &http.Server{
Addr: fmt.Sprintf("%s:%d", conf.Host, conf.Port),
2017-05-02 12:39:53 +02:00
WriteTimeout: 15 * time.Second,
ReadTimeout: 15 * time.Second,
}
err := srv.ListenAndServe()
log.CheckError(err)
2017-05-02 12:39:53 +02:00
}
func main() {
conf := config.NewConfig()
conf_bind := conf.BindFlags()
defaults := flag.Bool("print-defaults", false, "print the default configuration file on stdout")
flag.Parse()
if *defaults {
stdout := bufio.NewWriter(os.Stdout)
conf.Pretty(stdout)
stdout.Flush()
os.Exit(0)
} else {
conf_bind()
RunServer(conf)
}
}