Skip to content

Commit 74678ec

Browse files
committed
updated README/added todos and feature list
1 parent 0d7e7a6 commit 74678ec

File tree

2 files changed

+16
-3
lines changed

2 files changed

+16
-3
lines changed

README.md

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# process
2-
3-
##### process is a simple Go package for finding, starting and working with unix processes.
2+
process is a simple Go package for working with unix processes.
43

54
For an example into what process is capable of doing, check out gobeat: https://github.com/radovskyb/gobeat.
5+
6+
# Features
7+
8+
- Find a process by PID.
9+
- Find a process by name.
10+
- Health check a process.
11+
- Start a new process.
12+
- Start a new process in a specified `tty`.
13+
- Other small features plus more to come...
14+
15+
# Todo
16+
17+
- Add `Kill` method.
18+
- Add `Restart` method.
19+
- Write more tests.

process.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// TODO: Add Process Kill method.
21
package process
32

43
import (

0 commit comments

Comments
 (0)