Files
go_process_manager/internal/app/model/file.go
2025-07-05 11:50:41 +08:00

15 lines
233 B
Go

package model
type FileStruct struct {
Name string `json:"name"`
IsDir bool `json:"isDir"`
}
type FilePathHandlerReq struct {
Path string `form:"path"`
}
type FileReadHandlerReq struct {
FilePath string `form:"filePath"`
}