mirror of
https://github.com/netbirdio/netbird.git
synced 2026-08-28 10:31:29 +02:00
12 lines
267 B
Go
12 lines
267 B
Go
package networkmapdb
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/netbirdio/netbird/shared/management/networkmap/nmdata"
|
|
)
|
|
|
|
func (db *NetworkMapDBStoreImpl) GetGroups(ctx context.Context, accountId string) ([]nmdata.Group, error) {
|
|
return db.store.GetGroups(ctx, accountId)
|
|
}
|