mirror of
https://github.com/get-drexa/drive.git
synced 2026-02-02 16:01:17 +00:00
8 lines
111 B
Go
8 lines
111 B
Go
|
|
package organization
|
||
|
|
|
||
|
|
import "errors"
|
||
|
|
|
||
|
|
var (
|
||
|
|
ErrOrganizationNotFound = errors.New("organization not found")
|
||
|
|
)
|