Ship live alerts, pool status, AI monitor, remote agent commands, build manager, and uninstall flow; wire Calibrate settings (WS ping, pool traffic log, retention limits) at runtime and exclude server/data from git.
13 lines
304 B
Go
13 lines
304 B
Go
package api
|
|
|
|
// ServerPolicy holds Calibrate settings enforced at runtime.
|
|
type ServerPolicy struct {
|
|
MaxAgents int
|
|
LogAgentConnections bool
|
|
LogShareSubmissions bool
|
|
LogPoolTraffic bool
|
|
StrictWalletValidation bool
|
|
MaxBuildSizeMB int
|
|
PoolReconnectSeconds int
|
|
}
|