12 строки
337 B
Go
12 строки
337 B
Go
//go:build !linux
|
|
|
|
package webapp
|
|
|
|
// statDisk is a no-op on non-Linux platforms. The webapp MVP targets
|
|
// Linux workers (the proc/sysfs data sources only exist there); the
|
|
// build tag keeps the package compilable on a developer Mac for
|
|
// quick template/handler iteration.
|
|
func statDisk(_ string, _ *DiskSample) error {
|
|
return nil
|
|
}
|