mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-16 15:26:40 +00:00
11 lines
230 B
Go
11 lines
230 B
Go
package accesslogs
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
type Manager interface {
|
|
SaveAccessLog(ctx context.Context, proxyLog *AccessLogEntry) error
|
|
GetAllAccessLogs(ctx context.Context, accountID, userID string) ([]*AccessLogEntry, error)
|
|
}
|