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