1
0
mirror of https://github.com/divan/expvarmon.git synced 2025-04-25 13:48:54 +08:00
expvarmon/ui.go

9 lines
111 B
Go
Raw Normal View History

2015-04-21 12:51:01 +03:00
package main
2015-05-02 10:12:16 +03:00
// UI represents UI renderer.
2015-04-21 12:51:01 +03:00
type UI interface {
2015-05-01 18:48:34 +03:00
Init(UIData) error
2015-04-21 12:51:01 +03:00
Close()
2015-05-01 14:37:28 +03:00
Update(UIData)
2015-04-21 12:51:01 +03:00
}