8 lines
193 B
Go
8 lines
193 B
Go
package middleware
|
|
|
|
const (
|
|
// constants that are common to all UI-serving middlewares
|
|
defaultDocsPath = "docs"
|
|
defaultDocsURL = "/swagger.json"
|
|
defaultDocsTitle = "API Documentation"
|
|
)
|