Add structs for listing files
This commit is contained in:
parent
f61787a1ba
commit
50ae8f7138
|
@ -28,15 +28,43 @@ type ClientBasicInfo struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
type Instructions struct {
|
type Instructions struct {
|
||||||
IsHeartbeat bool
|
IsHeartbeat bool
|
||||||
IsCommand bool
|
|
||||||
|
IsCommand bool
|
||||||
|
|
||||||
IsKillswitch bool
|
IsKillswitch bool
|
||||||
Message string
|
|
||||||
|
// IsDownload bool
|
||||||
|
// IsUpload bool
|
||||||
|
// FileName string
|
||||||
|
// FileContents []byte
|
||||||
|
|
||||||
|
IsListFiles bool
|
||||||
|
Path string
|
||||||
|
|
||||||
|
Message string
|
||||||
}
|
}
|
||||||
|
|
||||||
type Response struct {
|
type Response struct {
|
||||||
Successful bool
|
Successful bool
|
||||||
Message string
|
Message string
|
||||||
|
|
||||||
|
// IsUpload bool
|
||||||
|
// FileName string
|
||||||
|
// FileContents []byte
|
||||||
|
|
||||||
|
IsListFiles bool
|
||||||
|
FileList
|
||||||
|
}
|
||||||
|
|
||||||
|
type FileList struct {
|
||||||
|
File []Item
|
||||||
|
}
|
||||||
|
|
||||||
|
type Item struct {
|
||||||
|
Name string
|
||||||
|
FullPath string
|
||||||
|
IsFolder bool
|
||||||
}
|
}
|
||||||
|
|
||||||
type Bulk struct {
|
type Bulk struct {
|
||||||
|
|
Loading…
Reference in New Issue