Files
query-orchestration/api/queryService/export.go
T

12 lines
223 B
Go
Raw Normal View History

2025-01-15 19:45:51 +00:00
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"})
}