Documentation
¶
Index ¶
- func AddService(engine *gin.Engine) *gin.RouterGroup
- func DeleteAppSession(c *gin.Context)
- func DeleteEventsSubsc(c *gin.Context)
- func GetAppSession(c *gin.Context)
- func Index(c *gin.Context)
- func ModAppSession(c *gin.Context)
- func NewRouter() *gin.Engine
- func PostAppSessions(c *gin.Context)
- func UpdateEventsSubsc(c *gin.Context)
- type Route
- type Routes
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func AddService ¶
func AddService(engine *gin.Engine) *gin.RouterGroup
func DeleteAppSession ¶
DeleteAppSession - Deletes an existing Individual Application Session Context
func DeleteEventsSubsc ¶
DeleteEventsSubsc - deletes the Events Subscription subresource
func GetAppSession ¶
GetAppSession - Reads an existing Individual Application Session Context
func ModAppSession ¶
ModAppSession - Modifies an existing Individual Application Session Context
func PostAppSessions ¶
PostAppSessions - Creates a new Individual Application Session Context resource
func UpdateEventsSubsc ¶
UpdateEventsSubsc - creates or modifies an Events Subscription subresource
Types ¶
type Route ¶
type Route struct { // Name is the name of this Route. Name string // Method is the string for the HTTP method. ex) GET, POST etc.. Method string // Pattern is the pattern of the URI. Pattern string // HandlerFunc is the handler function of this route. HandlerFunc gin.HandlerFunc }
Route is the information for every URI.
Click to show internal directories.
Click to hide internal directories.