mirror of
https://github.com/openziti/ziti.git
synced 2026-09-11 21:38:58 +00:00
15 lines
302 B
Go
15 lines
302 B
Go
package debugops
|
|
|
|
import (
|
|
"github.com/openziti/ziti/router"
|
|
"github.com/openziti/ziti/router/state"
|
|
)
|
|
|
|
const (
|
|
DumpApiSessions byte = 128
|
|
)
|
|
|
|
func RegisterEdgeRouterAgentOps(router *router.Router, sm state.Manager, debugEnabled bool) {
|
|
router.RegisterAgentOp(DumpApiSessions, sm.DumpApiSessions)
|
|
}
|