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>
19 lines
518 B
Go
19 lines
518 B
Go
/*
|
|
* @Author: LinkLeong link@icewhale.com
|
|
* @Date: 2022-07-15 10:43:00
|
|
* @LastEditors: LinkLeong
|
|
* @LastEditTime: 2022-07-15 10:56:17
|
|
* @FilePath: /CasaOS/model/notify/storage.go
|
|
* @Description:
|
|
* @Website: https://www.casaos.io
|
|
* Copyright (c) 2022 by icewhale, All Rights Reserved.
|
|
*/
|
|
package notify
|
|
|
|
type StorageMessage struct {
|
|
Type string `json:"type"` //sata,usb
|
|
Action string `json:"action"` //remove add
|
|
Path string `json:"path"`
|
|
Volume string `json:"volume"`
|
|
Size uint64 `json:"size"`
|
|
}
|