返回 DeepSeek-Reasonix
environment_config.go
根目录 / internal / config / environment_config.go
1 package config
2
3 // EnvironmentConfig controls startup environment reporting and network facts.
4 type EnvironmentConfig struct {
5 Enabled *bool `toml:"enabled"`
6 Offline bool `toml:"offline"`
7 Tools map[string]string `toml:"tools"`
8 }
9
9 lines GO