26 lines
524 B
YAML
26 lines
524 B
YAML
definitions:
|
|
controllers.HealthStatus:
|
|
properties:
|
|
healthy:
|
|
type: boolean
|
|
type: object
|
|
info:
|
|
contact: {}
|
|
paths:
|
|
/service/health:
|
|
get:
|
|
consumes:
|
|
- application/json
|
|
description: Used internally for checking service health
|
|
produces:
|
|
- application/json
|
|
responses:
|
|
"200":
|
|
description: desc
|
|
schema:
|
|
$ref: '#/definitions/controllers.HealthStatus'
|
|
summary: Get health status
|
|
tags:
|
|
- Service
|
|
swagger: "2.0"
|