Files
wgstun/config.go
2022-04-02 11:29:34 +08:00

11 lines
166 B
Go

package main
type Config struct {
Interface string
Server string `json:"server"`
Peers []string `json:"peers"`
Interval int `json:"interval"`
}