mirror of
https://github.com/bcicen/ctop.git
synced 2024-08-30 18:23:19 +00:00
14 lines
211 B
Go
14 lines
211 B
Go
package cwidgets
|
|
|
|
import (
|
|
"github.com/bcicen/ctop/logging"
|
|
"github.com/bcicen/ctop/metrics"
|
|
)
|
|
|
|
var log = logging.Init()
|
|
|
|
type WidgetUpdater interface {
|
|
SetMeta(string, string)
|
|
SetMetrics(metrics.Metrics)
|
|
}
|