You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wg-access-server/internal/storage/contracts.go

23 lines
503 B
Go

package storage
import (
"time"
)
type Storage interface {
Save(*Device) error
List() ([]*Device, error)
Get(string) (*Device, error)
Delete(*Device) error
}
type Device struct {
Name string `json:"name"`
PublicKey string `json:"publicKey"`
Endpoint string `json:"endpoint"`
Address string `json:"address"`
DNS string `json:"dns"`
CreatedAt time.Time `json:"createdAt"`
ServerPublicKey string `json:"serverPublicKey"`
}