13 lines
293 B
Go
13 lines
293 B
Go
package models
|
|
|
|
const (
|
|
// IDPrefixOrganization defines the ID Prefix for an Organization.
|
|
IDPrefixOrganization = "metlorg"
|
|
|
|
// IDPrefixProject defines the ID Prefix for a Project.
|
|
IDPrefixProject = "metlprj"
|
|
|
|
// IDPrefixUser defines the ID Prefix for a User.
|
|
IDPrefixUser = "metlusr"
|
|
)
|