mirror of
https://github.com/divan/expvarmon.git
synced 2025-04-27 13:48:55 +08:00
9 lines
94 B
Go
9 lines
94 B
Go
package main
|
|
|
|
// UI represents UI module
|
|
type UI interface {
|
|
Init()
|
|
Close()
|
|
Update(Data)
|
|
}
|