mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-16 07:16:38 +00:00
20 lines
410 B
Go
20 lines
410 B
Go
package network
|
|
|
|
import "github.com/netbirdio/netbird/management/refactor/resources/network/types"
|
|
|
|
type Manager interface {
|
|
GetNetwork(accountID string) (types.Network, error)
|
|
}
|
|
|
|
type DefaultManager struct {
|
|
}
|
|
|
|
func NewDefaultManager() *DefaultManager {
|
|
return &DefaultManager{}
|
|
}
|
|
|
|
func (d DefaultManager) GetNetwork(accountID string) (types.Network, error) {
|
|
// TODO implement me
|
|
panic("implement me")
|
|
}
|