keksvpn/pkg/wgfunc/client.go

20 lines
238 B
Go
Raw Normal View History

2022-02-27 03:22:11 +00:00
package wgfunc
type ClientConfig struct {
ServerURL string
ServerPublicKey string
PrivateKey string
PresharedKey string
}
type Client struct {
}
func NewClient(config ClientConfig) Client {
}
func (c *Client)Connect() error {
}