├── .gitignore ├── LICENSE ├── README.md ├── go.mod ├── pidusage.go └── pidusage_test.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/struCoder/pidusage/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/struCoder/pidusage/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/struCoder/pidusage/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/struCoder/pidusage 2 | 3 | go 1.13 4 | -------------------------------------------------------------------------------- /pidusage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/struCoder/pidusage/HEAD/pidusage.go -------------------------------------------------------------------------------- /pidusage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/struCoder/pidusage/HEAD/pidusage_test.go --------------------------------------------------------------------------------