diff options
Diffstat (limited to 'cli/msg.fbs')
-rw-r--r-- | cli/msg.fbs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cli/msg.fbs b/cli/msg.fbs index fb8fd9c22..493bf1d68 100644 --- a/cli/msg.fbs +++ b/cli/msg.fbs @@ -2,6 +2,7 @@ union Any { Accept, Chdir, Chmod, + Chown, Close, CompilerConfig, CompilerConfigRes, @@ -343,6 +344,12 @@ table Chmod { mode: uint; // Specified by https://godoc.org/os#FileMode } +table Chown { + path: string; + uid: uint; + gid: uint; // Specified by https://godoc.org/os#Chown +} + table Remove { path: string; recursive: bool; |