GitRoot

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