aboutsummaryrefslogtreecommitdiff
path: root/cmd/forge/main.go
blob: 07a9bfd6854106e4833b7a7e0f8d1f3e80884160 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

// SPDX-License-Identifier: AGPL-3.0-only
// SPDX-FileCopyrightText: Copyright (c) 2025 Runxi Yu <https://runxiyu.org>

package main

import (
	"flag"

	"go.lindenii.runxiyu.org/forge"
)

func main() {
	configPath := flag.String(
		"config",
		"/etc/lindenii/forge.scfg",
		"path to configuration file",
	)
	flag.Parse()

	s := forge.NewServer(*configPath)

	s.Run()
}