package ocean type Storage[T any] interface { Init(c *collection[T]) error Set(key string, value *T) error Delete(key string) error }