9 lines
131 B
Go
9 lines
131 B
Go
|
package storage
|
||
|
|
||
|
import "errors"
|
||
|
|
||
|
var (
|
||
|
ErrURLNotFound = errors.New("url not found")
|
||
|
ErrURLExists = errors.New("url exists")
|
||
|
)
|