mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 09:53:54 +01:00
16 lines
472 B
Go
16 lines
472 B
Go
package healthcheck
|
|
|
|
import "fmt"
|
|
|
|
// AvailableDiskSpaceRatio returns ratio of available disk space to total
|
|
// capacity.
|
|
func AvailableDiskSpaceRatio(_ string) (float64, error) {
|
|
return 0, fmt.Errorf("disk space check not supported in WebAssembly")
|
|
}
|
|
|
|
// AvailableDiskSpace returns the available disk space in bytes of the given
|
|
// file system.
|
|
func AvailableDiskSpace(_ string) (uint64, error) {
|
|
return 0, fmt.Errorf("disk space check not supported in WebAssembly")
|
|
}
|