tomlToolConfig implements ToolConfig backed by a TOML file (currently only used for codex's ~/.codex/config.toml).
| 12 | // tomlToolConfig implements ToolConfig backed by a TOML file (currently only |
| 13 | // used for codex's ~/.codex/config.toml). |
| 14 | type tomlToolConfig struct { |
| 15 | spec spec |
| 16 | } |
| 17 | |
| 18 | func newTOMLToolConfig(s spec) *tomlToolConfig { |
| 19 | return &tomlToolConfig{spec: s} |
nothing calls this directly
no outgoing calls
no test coverage detected