You've already forked example-public-integrations
mirror of
https://github.com/netbirdio/example-public-integrations.git
synced 2026-05-22 17:09:16 -07:00
14 lines
290 B
Go
14 lines
290 B
Go
package account_manager_proxy
|
|
|
|
import "github.com/netbirdio/netbird/management/server"
|
|
|
|
type AccountManagerProxy struct {
|
|
server.AccountManager
|
|
}
|
|
|
|
func NewAccountManagerProxy(accountManager server.AccountManager) *AccountManagerProxy {
|
|
return &AccountManagerProxy{
|
|
accountManager,
|
|
}
|
|
}
|