This repository has been archived on 2025-09-28. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
ass/main.go

16 lines
206 B
Go
Raw Normal View History

2024-06-29 09:38:07 +02:00
package main
// Copyright (c) 2024 Julian Müller (ChaoticByte)
// License: MIT
import "os"
func main() {
if ParseCommandline() {
ParseConfig(configFilepath)
RunServer()
} else {
os.Exit(1)
}
}