18 lines
293 B
Go
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()
|
|
}
|