refactor: integrate CLI's code & CI into main repo (#1343)

This commit is contained in:
dkeven
2025-05-26 17:21:25 +08:00
committed by GitHub
parent 532b0a3e24
commit 22fdd7b86f
529 changed files with 102147 additions and 66 deletions

View File

@@ -0,0 +1,9 @@
package utils
func GetDrives() []string {
return []string{}
}
func GetDiskSpace(path string) (total uint64, free uint64, err error) {
return total, free, err
}