aboutsummaryrefslogtreecommitdiff
path: root/forged/cmd/forge/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'forged/cmd/forge/main.go')
-rw-r--r--forged/cmd/forge/main.go27
1 files changed, 0 insertions, 27 deletions
diff --git a/forged/cmd/forge/main.go b/forged/cmd/forge/main.go
deleted file mode 100644
index fde15d1..0000000
--- a/forged/cmd/forge/main.go
+++ /dev/null
@@ -1,27 +0,0 @@
-// SPDX-License-Identifier: AGPL-3.0-only
-// SPDX-FileCopyrightText: Copyright (c) 2025 Runxi Yu <https://runxiyu.org>
-
-// The main entry point to the Lindenii Forge daemon.
-package main
-
-import (
- "flag"
-
- "go.lindenii.runxiyu.org/forge/forged/internal/unsorted"
-)
-
-func main() {
- configPath := flag.String(
- "config",
- "/etc/lindenii/forge.scfg",
- "path to configuration file",
- )
- flag.Parse()
-
- s, err := unsorted.NewServer(*configPath)
- if err != nil {
- panic(err)
- }
-
- panic(s.Run())
-}