32
exception/endpoints.go
Normal file
32
exception/endpoints.go
Normal file
@@ -0,0 +1,32 @@
|
||||
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"
|
||||
)
|
||||
Reference in New Issue
Block a user