# Functions
NewAuth creates a new http.Handler for the auth operation.
NewAuthFound creates AuthFound with default headers values.
NewAuthParams creates a new AuthParams object
There are no default values defined in the spec.
NewCommunityHistory creates a new http.Handler for the community history operation.
NewCommunityHistoryOK creates CommunityHistoryOK with default headers values.
NewCommunityHistoryParams creates a new CommunityHistoryParams object
There are no default values defined in the spec.
NewLogin creates a new http.Handler for the login operation.
NewLoginFound creates LoginFound with default headers values.
NewLoginParams creates a new LoginParams object
There are no default values defined in the spec.
NewUserHistory creates a new http.Handler for the user history operation.
NewUserHistoryOK creates UserHistoryOK with default headers values.
NewUserHistoryParams creates a new UserHistoryParams object
There are no default values defined in the spec.
NewUserInfo creates a new http.Handler for the user info operation.
NewUserInfoOK creates UserInfoOK with default headers values.
NewUserInfoParams creates a new UserInfoParams object
There are no default values defined in the spec.
# Constants
AuthFoundCode is the HTTP code returned for type AuthFound.
CommunityHistoryOKCode is the HTTP code returned for type CommunityHistoryOK.
LoginFoundCode is the HTTP code returned for type LoginFound.
UserHistoryOKCode is the HTTP code returned for type UserHistoryOK.
UserInfoOKCode is the HTTP code returned for type UserInfoOK.
# Structs
Auth swagger:route GET /auth user auth
Auth With Discord
*/.
AuthFound Redirect
swagger:response authFound
*/.
AuthParams contains all the bound params for the auth operation typically these are obtained from a http.Request
swagger:parameters auth.
AuthURL generates an URL for the auth operation.
CommunityHistory swagger:route POST /community_history user communityHistory
Get Community History
*/.
CommunityHistoryBody community history body
swagger:model CommunityHistoryBody.
CommunityHistoryOK Success
swagger:response communityHistoryOK
*/.
CommunityHistoryParams contains all the bound params for the community history operation typically these are obtained from a http.Request
swagger:parameters community_history.
CommunityHistoryURL generates an URL for the community history operation.
Login swagger:route GET /login user login
Login With Discord
*/.
LoginFound Redirect
swagger:response loginFound
*/.
LoginParams contains all the bound params for the login operation typically these are obtained from a http.Request
swagger:parameters login.
LoginURL generates an URL for the login operation.
UserHistory swagger:route POST /user_history user userHistory
Get User History
*/.
UserHistoryBody user history body
swagger:model UserHistoryBody.
UserHistoryOK Success
swagger:response userHistoryOK
*/.
UserHistoryParams contains all the bound params for the user history operation typically these are obtained from a http.Request
swagger:parameters user_history.
UserHistoryURL generates an URL for the user history operation.
UserInfo swagger:route GET /user_info user userInfo
Get User Info
*/.
UserInfoOK Success
swagger:response userInfoOK
*/.
UserInfoParams contains all the bound params for the user info operation typically these are obtained from a http.Request
swagger:parameters user_info.
UserInfoURL generates an URL for the user info operation.
# Interfaces
AuthHandler interface for that can handle valid auth params.
CommunityHistoryHandler interface for that can handle valid community history params.
LoginHandler interface for that can handle valid login params.
UserHistoryHandler interface for that can handle valid user history params.
UserInfoHandler interface for that can handle valid user info params.
# Type aliases
AuthHandlerFunc turns a function with the right signature into a auth handler.
CommunityHistoryHandlerFunc turns a function with the right signature into a community history handler.
LoginHandlerFunc turns a function with the right signature into a login handler.
UserHistoryHandlerFunc turns a function with the right signature into a user history handler.
UserInfoHandlerFunc turns a function with the right signature into a user info handler.