2022-06-14 18:10:22 +08:00
|
|
|
/*
|
|
|
|
* @Author: LinkLeong link@icewhale.com
|
|
|
|
* @Date: 2021-12-08 18:10:25
|
|
|
|
* @LastEditors: LinkLeong
|
2022-07-22 11:02:11 +08:00
|
|
|
* @LastEditTime: 2022-07-13 10:49:16
|
2022-06-14 18:10:22 +08:00
|
|
|
* @FilePath: /CasaOS/model/docker.go
|
|
|
|
* @Description:
|
|
|
|
* @Website: https://www.casaos.io
|
|
|
|
* Copyright (c) 2022 by icewhale, All Rights Reserved.
|
|
|
|
*/
|
2021-12-09 19:02:41 +08:00
|
|
|
package model
|
|
|
|
|
|
|
|
type DockerStatsModel struct {
|
2022-07-22 11:02:11 +08:00
|
|
|
Icon string `json:"icon"`
|
|
|
|
Title string `json:"title"`
|
|
|
|
Data interface{} `json:"data"`
|
|
|
|
Previous interface{} `json:"previous"`
|
2021-12-09 19:02:41 +08:00
|
|
|
}
|
2022-09-15 08:13:07 +01:00
|
|
|
|
|
|
|
type DeckerDaemonModel struct {
|
|
|
|
Graph string `json:"graph"`
|
|
|
|
}
|