9 lines
168 B
Go
9 lines
168 B
Go
package repository
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrWeatherAlreadyExists = errors.New("weather already exists")
|
|
ErrWeatherNotFound = errors.New("weather not found")
|
|
)
|