SAVEPOINT

This commit is contained in:
2017-11-11 20:28:53 +00:00
parent 932cfca834
commit 01cbb70537

7
tuu.go
View File

@@ -58,5 +58,10 @@ func (a *App) Serve(cfg Config) error {
}() }()
// start the web server // start the web server
return server.ListenAndServe() if err := server.ListenAndServe(); err != nil {
return err
}
log.Printf("http server running @ %s:%s", cfg.IPAddr, cfg.Port)
return nil
} }