1// SPDX-FileCopyrightText: 2025 Romain Maneschi <romain@gitroot.dev>
2//
3// SPDX-License-Identifier: MIT
4
5@json
6export class ForgeConf {
7 constructor(
8 public domain: string,
9 public externalSshAddr: string,
10 public externalHttpAddr: string
11 ) {}
12}