@pi-unipi/unipi 0.1.4 → 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/packages/unipi/index.ts +2 -0
package/package.json
CHANGED
package/packages/unipi/index.ts
CHANGED
|
@@ -17,6 +17,7 @@ import memory from "@pi-unipi/memory";
|
|
|
17
17
|
import infoScreen from "@pi-unipi/info-screen";
|
|
18
18
|
import subagents from "../subagents/src/index.js";
|
|
19
19
|
import btw from "@pi-unipi/btw/extensions/btw.js";
|
|
20
|
+
import webApi from "../web-api/src/index.js";
|
|
20
21
|
|
|
21
22
|
export default function (pi: ExtensionAPI) {
|
|
22
23
|
workflow(pi);
|
|
@@ -25,4 +26,5 @@ export default function (pi: ExtensionAPI) {
|
|
|
25
26
|
infoScreen(pi);
|
|
26
27
|
subagents(pi);
|
|
27
28
|
btw(pi);
|
|
29
|
+
webApi(pi);
|
|
28
30
|
}
|