Spaces:
Paused
Paused
File size: 239 Bytes
8523e75 | 1 2 3 4 5 6 7 8 | import type { CLIAdapterModule } from "@paperclipai/adapter-utils";
import { printHttpStdoutEvent } from "./format-event.js";
export const httpCLIAdapter: CLIAdapterModule = {
type: "http",
formatStdoutEvent: printHttpStdoutEvent,
};
|