Add filesystem to itctl

This commit is contained in:
2021-11-23 14:14:45 -08:00
parent c9c00e0072
commit 099b0cd849
9 changed files with 383 additions and 1 deletions

View File

@@ -84,7 +84,7 @@ func (c *Client) WriteFile(path, data string) error {
_, err := c.request(types.Request{
Type: types.ReqTypeFS,
Data: types.ReqDataFS{
Type: types.FSTypeRead,
Type: types.FSTypeWrite,
Files: []string{path},
Data: data,
},