8 lines
138 B
Go
Raw Normal View History

2023-07-07 16:05:52 +00:00
package ocean
type Storage[T any] interface {
Init(c *collection[T]) error
Set(key string, value *T) error
Delete(key string) error
}