diff options
author | terminaldweller <devi@terminaldweller.com> | 2025-08-23 23:15:33 +0000 |
---|---|---|
committer | terminaldweller <devi@terminaldweller.com> | 2025-08-23 23:15:33 +0000 |
commit | 7b4a951add399fd6e6984d714656902c3d58d222 (patch) | |
tree | 5636e4c4e819e4bb4be5eeb84a4f54b62621f3cc /types.go | |
parent | ghost WIP (diff) | |
download | milla-7b4a951add399fd6e6984d714656902c3d58d222.tar.gz milla-7b4a951add399fd6e6984d714656902c3d58d222.zip |
Diffstat (limited to 'types.go')
-rw-r--r-- | types.go | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -339,7 +339,11 @@ type GhostRuleSet struct { } type GhostNetwork struct { - ServerAddress string `toml:"serverAddress"` + ServerCert string `toml:"serverCert"` + ServerKey string `toml:"serverKey"` + ServerAddress string `toml:"ServerAddress"` + ServerName string `toml:"serverName"` + UpstreamProxy string `toml:"upstreamProxy"` UseTLS bool `toml:"useTLS"` SkipTLSVerify bool `toml:"skipTLSVerify"` Nick string `toml:"nick"` @@ -353,4 +357,5 @@ type GhostNetwork struct { Instructions []string `toml:"instructions"` Prompt string `toml:"prompt"` GhostRuleSets []GhostRuleSet `toml:"ghostRuleSets"` + LogRaw bool `toml:"logRaw"` } |