mirror of
https://github.com/makeplane/plane.git
synced 2026-07-12 21:40:18 +02:00
15 lines
339 B
Go
15 lines
339 B
Go
|
|
package router
|
||
|
|
|
||
|
|
import "encoding/json"
|
||
|
|
|
||
|
|
// ------------------ Router Options -----------------------
|
||
|
|
|
||
|
|
var defaultRouterOptions = MonitorRouterOptions{
|
||
|
|
AppName: "Prime Monitor",
|
||
|
|
PrintRoutes: true,
|
||
|
|
Encoder: json.Marshal,
|
||
|
|
Decoder: json.Unmarshal,
|
||
|
|
DisableKeepAlive: true,
|
||
|
|
ReduceMemoryUsage: false,
|
||
|
|
}
|