mirror of
https://github.com/alkimake/paperclip.git
synced 2026-06-16 10:50:38 +09:00
9 lines
197 B
TypeScript
9 lines
197 B
TypeScript
|
|
import type { ServerAdapterModule } from "../types.js";
|
||
|
|
import { execute } from "./execute.js";
|
||
|
|
|
||
|
|
export const processAdapter: ServerAdapterModule = {
|
||
|
|
type: "process",
|
||
|
|
execute,
|
||
|
|
models: [],
|
||
|
|
};
|