mirror of
https://github.com/openziti/zrok.git
synced 2024-11-25 01:23:49 +01:00
29 lines
491 B
YAML
29 lines
491 B
YAML
info:
|
|
description: zrok client access
|
|
title: zrok
|
|
version: 1.0.0
|
|
paths:
|
|
/:
|
|
get:
|
|
tags:
|
|
- metadata
|
|
responses:
|
|
200:
|
|
description: retrieve the current server version
|
|
schema:
|
|
$ref: "#/definitions/version"
|
|
definitions:
|
|
version:
|
|
type: object
|
|
properties:
|
|
version:
|
|
type: string
|
|
minLength: 1
|
|
produces:
|
|
- application/zrok.v1+json
|
|
consumes:
|
|
- application/zrok.v1+json
|
|
schemes:
|
|
- http
|
|
swagger: "2.0"
|