Skip to content

Commit 922f53d

Browse files
committed
fix: missing imports
1 parent 924d440 commit 922f53d

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

src/daybook_core/rt/wash_plugin.rs

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -436,9 +436,13 @@ impl wash_runtime::plugin::HostPlugin for DaybookPlugin {
436436
fn world(&self) -> WitWorld {
437437
WitWorld {
438438
exports: std::collections::HashSet::new(),
439-
imports: std::collections::HashSet::from([WitInterface::from(
440-
"townframe:daybook/drawer,capabilities,facet-routine,sqlite-connection,mltools-ocr,mltools-embed,mltools-image-tools,mltools-llm-chat",
441-
)]),
439+
imports: std::collections::HashSet::from([
440+
WitInterface::from("townframe:utils/types"),
441+
WitInterface::from("townframe:api-utils/utils"),
442+
WitInterface::from(
443+
"townframe:daybook/drawer,capabilities,facet-routine,sqlite-connection,mltools-ocr,mltools-embed,mltools-image-tools,mltools-llm-chat",
444+
),
445+
]),
442446
}
443447
}
444448

0 commit comments

Comments
 (0)