github.com/unicornultrafoundation/go-u2u@v1.0.0-rc1.0.20240205080301-e74a83d3fadc/monitoring/config.go (about) 1 package monitoring 2 3 // DefaultConfig is the default config for monitorings used in U2U. 4 type Config struct { 5 Port int `toml:",omitempty"` 6 } 7 8 // DefaultConfig is the default config for monitorings used in U2U. 9 var DefaultConfig = Config{ 10 Port: 19090, 11 }