mirror of
https://github.com/bcicen/ctop.git
synced 2024-08-30 18:23:19 +00:00
8 lines
89 B
Go
8 lines
89 B
Go
package manager
|
|
|
|
type Manager interface {
|
|
Start() error
|
|
Stop() error
|
|
Remove() error
|
|
}
|