33 lines
620 B
Go
33 lines
620 B
Go
package exception
|
|
|
|
// Middleware Service Endpoints
|
|
const (
|
|
MiddlewareEndpoint = "01"
|
|
)
|
|
|
|
// Auth Service Endpoints
|
|
const (
|
|
AuthRedirectEndpoint = "01"
|
|
AuthMagicEndpoint = "02"
|
|
AuthTokenEndpoint = "03"
|
|
AuthRefreshEndpoint = "04"
|
|
AuthExchangeEndpoint = "05"
|
|
)
|
|
|
|
// Event Service Endpoints
|
|
const (
|
|
EventInfoEndpoint = "01"
|
|
EventCheckinEndpoint = "02"
|
|
EventCheckinQueryEndpoint = "03"
|
|
EventCheckinSubmitEndpoint = "04"
|
|
)
|
|
|
|
// User Service Endpoints
|
|
const (
|
|
UserInfoEndpoint = "01"
|
|
UserUpdateEndpoint = "02"
|
|
UserListEndpoint = "03"
|
|
UserFullEndpoint = "04"
|
|
UserCreateEndpoint = "05"
|
|
)
|