mirror of
https://github.com/openziti/zrok.git
synced 2024-11-26 10:04:16 +01:00
11 lines
278 B
Go
11 lines
278 B
Go
package controller
|
|
|
|
import (
|
|
"github.com/go-openapi/runtime/middleware"
|
|
"github.com/openziti-test-kitchen/zrok/rest_server_zrok/operations/metadata"
|
|
)
|
|
|
|
func versionHandler(_ metadata.VersionParams) middleware.Responder {
|
|
return metadata.NewVersionOK().WithPayload(version)
|
|
}
|