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