8 lines
165 B
Go
8 lines
165 B
Go
|
package consts
|
||
|
|
||
|
import "errors"
|
||
|
|
||
|
var (
|
||
|
ErrInternalServerError = errors.New("there was a server error, but we have logged this request for further investigation")
|
||
|
)
|