wasp/examples/streaming/main.wasp
2024-02-09 17:26:28 +01:00

22 lines
459 B
JavaScript

app streaming {
wasp: {
version: "^0.12.0"
},
title: "streaming"
}
route RootRoute { path: "/", to: MainPage }
page MainPage {
component: import Main from "@src/client/MainPage.jsx"
}
api streamingText {
httpRoute: (GET, "/api/streaming-test"),
fn: import { getText } from "@src/server/streaming.js",
}
apiNamespace defaultMiddleware {
path: "/api",
middlewareConfigFn: import { getMiddlewareConfig } from "@src/server/streaming.js",
}