1
0
mirror of https://github.com/divan/expvarmon.git synced 2025-04-29 13:49:19 +08:00
expvarmon/ui.go
2015-05-01 14:37:28 +03:00

9 lines
102 B
Go

package main
// UI represents UI module
type UI interface {
Init(UIData)
Close()
Update(UIData)
}