mirror of
https://github.com/costinm/ugate.git
synced 2025-12-24 13:27:52 +08:00
20 lines
253 B
Go
20 lines
253 B
Go
package cmd
|
|
|
|
import (
|
|
"sync"
|
|
)
|
|
|
|
// HTTP handlers for admin, debug and testing
|
|
|
|
|
|
// Debug handlers - on default mux, on 15000
|
|
|
|
// curl -v http://s6.webinf.info:15000/...
|
|
// - /debug/vars
|
|
// - /debug/pprof
|
|
|
|
type UGateHandlers struct {
|
|
m sync.RWMutex
|
|
}
|
|
|