Files
quibot/quibot-web/server/api/motor/step.post.ts
BinarySandia04 28457eb200
All checks were successful
Build / build-backend (push) Successful in 3s
Build / build-web (push) Successful in 12s
Build / release (push) Successful in 5s
Frontend test
2026-04-22 12:45:29 +02:00

11 lines
228 B
TypeScript

export default defineEventHandler(async () => {
const config = useRuntimeConfig()
return await $fetch(`${config.quibotBaseUrl}/motor/step`, {
method: 'POST',
query: {
token: config.quibotToken,
},
})
})