Logging & Godot Downloader

This commit is contained in:
2023-07-23 02:30:27 -04:00
parent bc33b4805a
commit 649d0d87f9
11 changed files with 728 additions and 0 deletions

9
internal/os.go Normal file
View File

@@ -0,0 +1,9 @@
package internal
type TargetOS uint8
const (
TargetOSLinux TargetOS = iota
TargetOSWindows
TargetOSMacOS
)