Files
fm_be/internal/domain/auth/contact_constants.go
2026-07-16 22:16:45 +07:00

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"
)