aboutsummaryrefslogtreecommitdiffstats
path: root/types.go
diff options
context:
space:
mode:
authorterminaldweller <devi@terminaldweller.com>2025-08-23 23:15:33 +0000
committerterminaldweller <devi@terminaldweller.com>2025-08-23 23:15:33 +0000
commit7b4a951add399fd6e6984d714656902c3d58d222 (patch)
tree5636e4c4e819e4bb4be5eeb84a4f54b62621f3cc /types.go
parentghost WIP (diff)
downloadmilla-7b4a951add399fd6e6984d714656902c3d58d222.tar.gz
milla-7b4a951add399fd6e6984d714656902c3d58d222.zip
the plumbing for ghost is done.WIPHEADmain
Diffstat (limited to 'types.go')
-rw-r--r--types.go7
1 files changed, 6 insertions, 1 deletions
diff --git a/types.go b/types.go
index 2939645..5cc7a3c 100644
--- a/types.go
+++ b/types.go
@@ -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"`
}