fix(cli): update stale ao-core imports (#1143)
This commit is contained in:
parent
c48b078a7b
commit
d73ec8edfd
|
|
@ -21,7 +21,7 @@ describe("cli entrypoint", () => {
|
|||
});
|
||||
|
||||
it("prints a clean message and exits 1 on ConfigNotFoundError", async () => {
|
||||
const { ConfigNotFoundError } = await import("@composio/ao-core");
|
||||
const { ConfigNotFoundError } = await import("@aoagents/ao-core");
|
||||
const error = new ConfigNotFoundError();
|
||||
let rejectionHandler:
|
||||
| ((reason: unknown) => unknown)
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
#!/usr/bin/env node
|
||||
|
||||
import { ConfigNotFoundError } from "@composio/ao-core";
|
||||
import { ConfigNotFoundError } from "@aoagents/ao-core";
|
||||
import { createProgram } from "./program.js";
|
||||
|
||||
createProgram()
|
||||
|
|
|
|||
Loading…
Reference in New Issue