mirror of
https://github.com/bcicen/ctop.git
synced 2024-08-30 18:23:19 +00:00
21 lines
311 B
Go
21 lines
311 B
Go
|
package cwidgets
|
||
|
|
||
|
import (
|
||
|
"github.com/bcicen/ctop/logging"
|
||
|
ui "github.com/gizak/termui"
|
||
|
)
|
||
|
|
||
|
var log = logging.Init()
|
||
|
|
||
|
type ContainerWidgets interface {
|
||
|
Buffer() ui.Buffer
|
||
|
Highlight()
|
||
|
UnHighlight()
|
||
|
SetY(int)
|
||
|
SetWidth(int)
|
||
|
SetStatus(string)
|
||
|
SetCPU(int)
|
||
|
SetNet(int64, int64)
|
||
|
SetMem(int64, int64, int)
|
||
|
}
|