NEXUS-1: Initial commit of Nexus

This commit is contained in:
Blake Ridgway
2026-07-14 05:53:25 -05:00
commit 16fe2bf928
22 changed files with 1739 additions and 0 deletions

16
main.go Normal file
View File

@@ -0,0 +1,16 @@
package main
import (
"fmt"
"os"
"git.arcline.it/ArclineIT/nexus/cmd/server"
)
func main() {
if err := server.Run(); err != nil {
fmt.Fprintf(os.Stderr, "nexus: %v\n", err)
os.Exit(1)
}
}