2025-01-06 08:00:35 +01:00

8 lines
91 B
Go

package storage
import "errors"
var (
ErrAlreadyExists = errors.New("already exists")
)