expvarmon/ui.go

9 lines
98 B
Go
Raw Normal View History

2015-04-21 17:51:01 +08:00
package main
// UI represents UI module
type UI interface {
2015-04-26 03:46:16 +08:00
Init(Data)
2015-04-21 17:51:01 +08:00
Close()
Update(Data)
}