Finish the dashboard framework.

This commit is contained in:
zicla
2018-12-01 04:01:49 +08:00
parent 3f668dcc4b
commit a197f51c6a
10 changed files with 164 additions and 33 deletions

9
rest/dashboard_model.go Normal file
View File

@ -0,0 +1,9 @@
package rest
/**
* 总调用量
*/
type DashboardInvoke struct {
InvokeNum int64 `json:"invokeNum"`
Dt string `json:"dt"`
}