mirror of
https://github.com/therootcompany/telebit.git
synced 2025-03-12 03:30:49 +00:00
add chi logger middleware to admin
This commit is contained in:
parent
6b7a642350
commit
b5b6c1ea03
@ -19,6 +19,7 @@ import (
|
||||
"git.rootprojects.org/root/telebit/table"
|
||||
|
||||
"github.com/go-chi/chi"
|
||||
"github.com/go-chi/chi/middleware"
|
||||
"github.com/gorilla/websocket"
|
||||
)
|
||||
|
||||
@ -27,6 +28,10 @@ var httpsrv *http.Server
|
||||
func InitAdmin(authURL string) {
|
||||
r := chi.NewRouter()
|
||||
|
||||
r.Use(middleware.Logger)
|
||||
//r.Use(middleware.Timeout(120 * time.Second))
|
||||
r.Use(middleware.Recoverer)
|
||||
|
||||
r.Use(func(next http.Handler) http.Handler {
|
||||
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
next.ServeHTTP(w, r)
|
||||
|
Loading…
x
Reference in New Issue
Block a user