fix: move implementation to "internal" package
This commit was merged in pull request #138.
This commit is contained in:
10
internal/types/types.go
Normal file
10
internal/types/types.go
Normal file
@@ -0,0 +1,10 @@
|
||||
package types
|
||||
|
||||
import (
|
||||
"errors"
|
||||
)
|
||||
|
||||
var (
|
||||
ErrInternal = errors.New("internal server error")
|
||||
ErrUnauthorized = errors.New("you are not authorized to perform this action")
|
||||
)
|
||||
Reference in New Issue
Block a user