9 lines
192 B
Go
9 lines
192 B
Go
package consts
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
// TODO: use throught the database methods and the site template parsing to treat it as a 404 (not a redirect)
|
|
ErrNotFound = errors.New("not found")
|
|
)
|