knowyt/server/src/knyt.go

25 lines
491 B
Go
Raw Normal View History

2021-07-28 20:21:14 +00:00
package main
import (
"fmt"
"net/http"
2021-07-31 07:55:43 +00:00
"sirlab.de/go/knyt/app"
2021-07-30 14:16:55 +00:00
"sirlab.de/go/knyt/handler"
2021-07-28 20:21:14 +00:00
)
func main() {
2021-07-31 08:18:01 +00:00
appConfig := app.NewAppConfig()
App := app.NewApp(appConfig)
App.Mux = handler.NewAuthMux()
2021-08-01 13:56:53 +00:00
2021-07-31 08:18:01 +00:00
App.Mux.PublicHandleFunc("/__intern__/exit", handler.Exit)
2021-07-28 20:21:14 +00:00
// default handler
2021-08-01 16:36:02 +00:00
fsHandler := http.FileServer(http.Dir("../../client/dist/"))
2021-07-31 08:18:01 +00:00
App.Mux.PublicHandle("/", fsHandler)
2021-07-28 20:21:14 +00:00
// start listening
2021-08-01 16:36:02 +00:00
fmt.Printf("http://localhost:%d/\n", App.Mux.Port)
App.Mux.ListenAndServe()
2021-07-28 20:21:14 +00:00
}