mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-28 11:34:41 +03:00
5a33d3c91b
Signed-off-by: Mihovil Ilakovac <mihovil@ilakovac.com>
21 lines
446 B
JavaScript
21 lines
446 B
JavaScript
app streaming {
|
|
wasp: {
|
|
version: "^0.11.5"
|
|
},
|
|
title: "streaming"
|
|
}
|
|
|
|
route RootRoute { path: "/", to: MainPage }
|
|
page MainPage {
|
|
component: import Main from "@client/MainPage.jsx"
|
|
}
|
|
|
|
api streamingText {
|
|
httpRoute: (GET, "/api/streaming-test"),
|
|
fn: import { getText } from "@server/streaming.js",
|
|
}
|
|
|
|
apiNamespace defaultMiddleware {
|
|
path: "/api",
|
|
middlewareConfigFn: import { getMiddlewareConfig } from "@server/streaming.js",
|
|
} |