mirror of
https://github.com/hatchet-dev/hatchet.git
synced 2026-02-16 13:19:07 -06:00
* adding a /version endpoint for the engine and a /api/v1/version endpoint for the API * make the security optional so we don't get redirected for having auth * lint * upgrade protoc to the latest available version on brew * use useQuery and clean up html
21 lines
553 B
YAML
21 lines
553 B
YAML
version:
|
|
get:
|
|
description: Get the version of the server
|
|
summary: We return the version for the currently running server
|
|
operationId: info:get:version
|
|
security: []
|
|
x-security-optional: true
|
|
responses:
|
|
"200":
|
|
description: The version of the server
|
|
required: true
|
|
content:
|
|
application/json:
|
|
schema:
|
|
type: object
|
|
required: ["version"]
|
|
properties:
|
|
version:
|
|
type: string
|
|
example: 1.0.0
|