chore: generate

This commit is contained in:
opencode-agent[bot]
2026-05-09 03:42:23 +00:00
parent eadda11ec9
commit 11d9e82eaf

View File

@@ -162,9 +162,9 @@ const instanceRoutes = Layer.mergeAll(rawInstanceRoutes, instanceApiRoutes).pipe
// the same Uint8Array instead of re-stringifying the spec.
const docResponse = lazy(() => HttpServerResponse.jsonUnsafe(OpenApi.fromApi(PublicApi)))
const docRoute = HttpRouter.use((router) =>
router.add("GET", "/doc", () => Effect.succeed(docResponse())),
).pipe(Layer.provide(authOnlyRouterLayer))
const docRoute = HttpRouter.use((router) => router.add("GET", "/doc", () => Effect.succeed(docResponse()))).pipe(
Layer.provide(authOnlyRouterLayer),
)
const uiRoute = HttpRouter.use((router) =>
Effect.gen(function* () {