Files
open-save-cloud-server/main.go
2022-06-16 22:45:24 +02:00

18 lines
293 B
Go

//go:build !windows
// +build !windows
package main
import (
"fmt"
"opensavecloudserver/constant"
"opensavecloudserver/server"
"runtime"
)
func main() {
fmt.Printf("Open Save Cloud (Server) %s (%s %s)\n", constant.Version, runtime.GOOS, runtime.GOARCH)
InitCommon()
server.Serve()
}