174644b63c
add openapi infra * add openapi infra Includes generated stubs and all deps * generatetolocation * basesetupoffunctionsandclient * round1controllertests * passintegrationtests * cleanupfromfullsuite * storedjson * fixjsonyaml * fixtests Approved-by: Michael McGuinness
12 lines
223 B
Go
12 lines
223 B
Go
package queryservice
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/labstack/echo/v4"
|
|
)
|
|
|
|
func (s *Controllers) TriggerExport(ctx echo.Context) error {
|
|
return ctx.JSON(http.StatusOK, map[string]string{"status": "export triggered"})
|
|
}
|