This commit is contained in:
2025-05-15 00:46:57 +02:00
parent 30c71cb449
commit b2b27b2c3d
18 changed files with 622 additions and 234 deletions

View File

@@ -0,0 +1,17 @@
package main
import (
"cloudsave/pkg/tools/windows"
"os"
)
const defaultDocumentRoot string = "C:/ProgramData/CloudSave"
func main() {
run()
}
func fatal(message string, exitCode int) {
windows.MessageBox(windows.NULL, message, "CloudSave", windows.MB_OK)
os.Exit(exitCode)
}