mirror of
https://github.com/beclab/Olares
synced 2026-04-21 21:47:56 +00:00
10 lines
164 B
Go
10 lines
164 B
Go
|
|
package utils
|
||
|
|
|
||
|
|
func GetDrives() []string {
|
||
|
|
return []string{}
|
||
|
|
}
|
||
|
|
|
||
|
|
func GetDiskSpace(path string) (total uint64, free uint64, err error) {
|
||
|
|
return total, free, err
|
||
|
|
}
|