8 lines
93 B
Go
8 lines
93 B
Go
package repository
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrUserNotFound = errors.New("user not found")
|
|
)
|