mirror of
https://github.com/alkimake/paperclip.git
synced 2026-06-18 11:40:39 +09:00
8 lines
224 B
TypeScript
8 lines
224 B
TypeScript
|
|
import type { CLIAdapterModule } from "../types.js";
|
||
|
|
import { printHttpStdoutEvent } from "./format-event.js";
|
||
|
|
|
||
|
|
export const httpCLIAdapter: CLIAdapterModule = {
|
||
|
|
type: "http",
|
||
|
|
formatStdoutEvent: printHttpStdoutEvent,
|
||
|
|
};
|