feat: 合并Gin_Vue

This commit is contained in:
TsMask
2023-10-16 17:10:38 +08:00
parent 5289818fd4
commit 40a32cb67f
203 changed files with 19719 additions and 178 deletions

View File

@@ -0,0 +1,25 @@
package service
// ISystemInfo 服务器系统相关信息 服务层接口
type ISystemInfo interface {
// ProjectInfo 程序项目信息
ProjectInfo() map[string]any
// SystemInfo 系统信息
SystemInfo() map[string]any
// TimeInfo 系统时间信息
TimeInfo() map[string]string
// MemoryInfo 内存信息
MemoryInfo() map[string]any
// CPUInfo CPU信息
CPUInfo() map[string]any
// NetworkInfo 网络信息
NetworkInfo() map[string]string
// DiskInfo 磁盘信息
DiskInfo() []map[string]string
}