url_shortener/internal/storage/storage.go

9 lines
131 B
Go
Raw Normal View History

2023-12-08 12:59:55 +02:00
package storage
import "errors"
var (
ErrURLNotFound = errors.New("url not found")
ErrURLExists = errors.New("url exists")
)