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

9 lines
111 B
Go

package main
// UI represents UI renderer.
type UI interface {
Init(UIData) error
Close()
Update(UIData)
}