first commit

This commit is contained in:
Aurélie Delhaie
2022-05-08 14:08:27 +02:00
commit b20a53cc48
19 changed files with 611 additions and 0 deletions

13
main.go Normal file
View File

@@ -0,0 +1,13 @@
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)
server.Serve()
}