17 lines
380 B
Go
17 lines
380 B
Go
package auth
|
|
|
|
const (
|
|
RoleCodePilot = "pilot"
|
|
RoleCodeDoctor = "doctor"
|
|
RoleCodeAirRescuer = "air_rescuer"
|
|
RoleCodeTechnician = "technician"
|
|
RoleCodeFlightAssistant = "flight_assistant"
|
|
RoleCodeStaff = "staff"
|
|
)
|
|
|
|
const (
|
|
PilotCategoryRegular = "regular"
|
|
PilotCategoryFreelance = "freelance"
|
|
PilotCategoryDryLease = "dry_lease"
|
|
)
|