Add project files

This commit is contained in:
ChaoticByte 2024-06-29 09:38:07 +02:00
parent d93b571440
commit 2dd8f72714
No known key found for this signature in database
9 changed files with 260 additions and 1 deletions

15
main.go Normal file
View file

@ -0,0 +1,15 @@
package main
// Copyright (c) 2024 Julian Müller (ChaoticByte)
// License: MIT
import "os"
func main() {
if ParseCommandline() {
ParseConfig(configFilepath)
RunServer()
} else {
os.Exit(1)
}
}