9 lines
145 B
Go
Raw Normal View History

2023-07-19 09:52:13 +00:00
package data
2023-07-07 16:05:52 +00:00
type Storage[T any] interface {
2023-07-18 07:08:55 +00:00
Init(data storageData) error
2023-07-08 15:26:36 +00:00
Delete(key string) error
2023-07-07 16:05:52 +00:00
Set(key string, value *T) error
2023-07-08 15:26:36 +00:00
Sync()
2023-07-07 16:05:52 +00:00
}