EndGame v3

This commit is contained in:
Aksh 2024-10-23 20:50:14 +05:30
commit 9e36ba54ee
646 changed files with 271674 additions and 0 deletions

View file

@ -0,0 +1,21 @@
package onionbalance
import "encoding/json"
type InstanceConfig struct {
Address string
}
type ServiceConfig struct {
Key string
Instances []InstanceConfig
}
type ConfigData struct {
Services []ServiceConfig
}
func (c ConfigData) String() string {
by, _ := json.Marshal(c)
return string(by)
}