6f98995e7d
* delete connect * update user * change branch * API feedback (#341) * wip * wip * wip * wip * wip * wip * wip * wip * change branch * update route * change branch * Update route.go * 0.3.4 Function development completed * Update system.go * update ui * Completed v0.3.4 and released alpha Co-authored-by: Tiger Wang (王豫) <tigerwang@outlook.com>
18 lines
485 B
Go
18 lines
485 B
Go
/*
|
|
* @Author: LinkLeong link@icewhale.com
|
|
* @Date: 2021-12-08 18:10:25
|
|
* @LastEditors: LinkLeong
|
|
* @LastEditTime: 2022-07-13 10:49:16
|
|
* @FilePath: /CasaOS/model/docker.go
|
|
* @Description:
|
|
* @Website: https://www.casaos.io
|
|
* Copyright (c) 2022 by icewhale, All Rights Reserved.
|
|
*/
|
|
package model
|
|
|
|
type DockerStatsModel struct {
|
|
Icon string `json:"icon"`
|
|
Title string `json:"title"`
|
|
Data interface{} `json:"data"`
|
|
Previous interface{} `json:"previous"`
|
|
}
|