mirror of
https://github.com/weloe/token-go.git
synced 2025-10-10 09:50:16 +08:00
8 lines
164 B
Go
8 lines
164 B
Go
package persist
|
|
|
|
type BatchAdapter interface {
|
|
Adapter
|
|
// DeleteBatchFilteredKey delete data by keyPrefix
|
|
DeleteBatchFilteredKey(filterKeyPrefix string) error
|
|
}
|