Skip to content

Commit

Permalink
feat: enable tools module
Browse files Browse the repository at this point in the history
  • Loading branch information
coffeeorgreentea committed Aug 6, 2024
1 parent 8807807 commit df8dc65
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
15 changes: 9 additions & 6 deletions grimoire/framework/src/cli/mod.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
import { knowledgeModule } from '@magickml/knowledge'
import { nodeModule } from '@magickml/nodes'
import { portalModule } from '@magickml/portal'
import { schemasModule } from '@magickml/schemas'
import { spellsModule } from '@magickml/spells'
import { portalModule } from '@magickml/portal'
import { knowledgeModule } from '@magickml/knowledge'
import { toolsModule } from '@magickml/tools'
import type { NitroModule } from 'nitro/types'

export const modules = [
export const modules: NitroModule[] = [
knowledgeModule,
nodeModule,
portalModule,
schemasModule,
spellsModule,
portalModule,
knowledgeModule,
] as const
toolsModule,
]
2 changes: 1 addition & 1 deletion grimoire/modules/tools/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { defineNovaModule } from '@gtc-nova/kit'
import { toolFeatures, type ToolFeatures } from './features'

export const toolModule = defineNovaModule<ToolFeatures>({
export const toolsModule = defineNovaModule<ToolFeatures>({
name: 'tools',
features: toolFeatures,
featureTypeFunctions: {
Expand Down

0 comments on commit df8dc65

Please sign in to comment.