39 lines
915 B
Go
39 lines
915 B
Go
// Package docs Gotify REST-API.
|
|
//
|
|
// This is the documentation of the Gotify REST-API.
|
|
//
|
|
// Schemes: http, https
|
|
// Host: localhost
|
|
// Version: 1.0.0
|
|
// License: MIT https://github.com/gotify/server/blob/master/LICENSE
|
|
// Contact: https://github.com/gotify/server/issues
|
|
//
|
|
// Consumes:
|
|
// - application/json
|
|
//
|
|
// Produces:
|
|
// - application/json
|
|
//
|
|
// SecurityDefinitions:
|
|
// appTokenQuery:
|
|
// type: apiKey
|
|
// name: token
|
|
// in: query
|
|
// clientTokenQuery:
|
|
// type: apiKey
|
|
// name: token
|
|
// in: query
|
|
// appTokenHeader:
|
|
// type: apiKey
|
|
// name: X-Gotify-Key
|
|
// in: header
|
|
// clientTokenHeader:
|
|
// type: apiKey
|
|
// name: X-Gotify-Key
|
|
// in: header
|
|
// basicAuth:
|
|
// type: basic
|
|
//
|
|
// swagger:meta
|
|
package docs
|