GitRoot

Craft your forge, Build your project, Grow your community freely
 1// SPDX-FileCopyrightText: 2026 Romain Maneschi <romain@gitroot.dev>
 2//
 3// SPDX-License-Identifier: MIT
 4
 5
 6@json
 7export class Call {
 8  constructor(
 9    public plugin: string,
10    public name: string,
11    public args: Map<string, string>,
12  ) {}
13}
14
15@json
16export class CallRes {
17  constructor(
18    public res: Map<string, string>,
19    public err: string,
20  ) {}
21}
22