mirror of
https://github.com/netbirdio/netbird.git
synced 2025-08-15 09:42:47 +02:00
8 lines
188 B
Go
8 lines
188 B
Go
package settings
|
|
|
|
import "github.com/netbirdio/netbird/management/refactor/resources/settings/types"
|
|
|
|
type Repository interface {
|
|
FindSettings(accountID string) (types.Settings, error)
|
|
}
|