mirror of
https://github.com/kernelstub/Ferrum
synced 2026-06-21 13:55:09 +00:00
14 lines
198 B
Go
14 lines
198 B
Go
//go:build !windows
|
|
|
|
package process
|
|
|
|
import (
|
|
"runtime"
|
|
|
|
winerrors "ferrum/windows/errors"
|
|
)
|
|
|
|
func EnumerateProcesses() ([]Process, error) {
|
|
return nil, winerrors.ErrUnsupported(runtime.GOOS)
|
|
}
|