mirror of
https://github.com/bcicen/ctop.git
synced 2025-11-16 16:05:47 +01: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)
|
|
}
|