mirror of
https://github.com/weloe/token-go.git
synced 2025-10-05 15:36:50 +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
|
|
}
|