mirror of
https://github.com/router-for-me/CLIProxyAPI.git
synced 2026-02-03 21:10:51 +08:00
14 lines
457 B
Go
14 lines
457 B
Go
package auth
|
|
|
|
import "context"
|
|
|
|
// Store abstracts persistence of Auth state across restarts.
|
|
type Store interface {
|
|
// List returns all auth records stored in the backend.
|
|
List(ctx context.Context) ([]*Auth, error)
|
|
// SaveAuth persists the provided auth record, replacing any existing one with same ID.
|
|
SaveAuth(ctx context.Context, auth *Auth) error
|
|
// Delete removes the auth record identified by id.
|
|
Delete(ctx context.Context, id string) error
|
|
}
|