aboutsummaryrefslogtreecommitdiffstats
path: root/types.go
diff options
context:
space:
mode:
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"`
}