Skip to content

Commit

Permalink
add missing rsc
Browse files Browse the repository at this point in the history
  • Loading branch information
patroza committed Feb 17, 2023
1 parent 67a3cc3 commit 27de840
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion _project/api/_src/Usecases/Graph.Controllers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function request<Key extends string>(
)
)
return r
})["|>"](Effect.$.either)
})["|>"](Effect.either)
: NoResponse
}
}
Expand Down
4 changes: 4 additions & 0 deletions _project/resources/_src/Graph.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
// codegen:start {preset: barrel, include: ./Graph/*.ts, exclude: ./Graph/utils.ts, export: { as: 'PascalCase' }, nodir: false }
export * as Mutation from "./Graph/Mutation.js"
export * as Query from "./Graph/Query.js"
// codegen:end
1 change: 1 addition & 0 deletions _project/resources/_src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export { ClientEvents } from "./Events.js"
// codegen:start {preset: barrel, include: ./*.ts, exclude: [./_global*.ts, ./index.ts, ./lib.ts, ./Views.ts, ./errors.ts], export: { as: 'PascalCase', postfix: 'Rsc' }}
export * as BlogRsc from "./Blog.js"
export * as EventsRsc from "./Events.js"
export * as GraphRsc from "./Graph.js"
export * as HelloWorldRsc from "./HelloWorld.js"
export * as MeRsc from "./Me.js"
export * as OperationsRsc from "./Operations.js"
Expand Down

0 comments on commit 27de840

Please sign in to comment.