mirror of
https://github.com/pacnpal/Roo-Code.git
synced 2025-12-21 12:51:17 -05:00
Add a command-line cline powered by deno
This commit is contained in:
21
cli/deps.ts
Normal file
21
cli/deps.ts
Normal file
@@ -0,0 +1,21 @@
|
||||
// Re-export standard library dependencies
|
||||
export { parse } from "https://deno.land/std@0.220.1/flags/mod.ts";
|
||||
export {
|
||||
blue,
|
||||
red,
|
||||
gray,
|
||||
yellow,
|
||||
bold,
|
||||
} from "https://deno.land/std@0.220.1/fmt/colors.ts";
|
||||
export {
|
||||
join,
|
||||
dirname,
|
||||
} from "https://deno.land/std@0.220.1/path/mod.ts";
|
||||
|
||||
// Export types
|
||||
export type {
|
||||
ApiHandler,
|
||||
AgentConfig,
|
||||
OperationMode,
|
||||
ToolResponse,
|
||||
} from "./types.d.ts";
|
||||
Reference in New Issue
Block a user