6 lines
82 B
Go
6 lines
82 B
Go
package user
|
|
|
|
import "errors"
|
|
|
|
var ErrUserNotFound = errors.New("user not found")
|