mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-16 07:16:38 +00:00
12 lines
221 B
Go
12 lines
221 B
Go
package account
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/netbirdio/netbird/management/server/types"
|
|
)
|
|
|
|
type RequestBuffer interface {
|
|
GetAccountWithBackpressure(ctx context.Context, accountID string) (*types.Account, error)
|
|
}
|