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