Skip to content

Commit

Permalink
Merge branch 'main' of github.com:Stride-Labs/echo-registry
Browse files Browse the repository at this point in the history
  • Loading branch information
srph committed Nov 27, 2024
2 parents 7c30599 + 8841852 commit 30ebd60
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/echos.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import _clara from "./agents/clara/echo.json";
import _derp from "./agents/derp/echo.json";
import _hal from "./agents/hal/echo.json";
import _test from "./agents/test/echo.json";

Check failure on line 4 in src/echos.ts

View workflow job for this annotation

GitHub Actions / build

Cannot find module './agents/test/echo.json' or its corresponding type declarations.
import _test2 from "./agents/test2/echo.json";

Check failure on line 5 in src/echos.ts

View workflow job for this annotation

GitHub Actions / build

Cannot find module './agents/test2/echo.json' or its corresponding type declarations.

const echos = [_clara, _derp, _hal];
const echos = [_clara, _derp, _hal, _test, _test2];

export { echos };

0 comments on commit 30ebd60

Please sign in to comment.