diff options
| author | Yingbo (Max) Wang <maxwyb@gmail.com> | 2019-05-07 18:58:58 -0700 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2019-05-07 21:58:57 -0400 |
| commit | ec9080f34c936d9af56cca68de664954053bf423 (patch) | |
| tree | ede97b27acebc225cc69da70433b626af63cc0e6 /cli/msg.fbs | |
| parent | 1f7ad17152c03b140c997590c897b89fbfea7cea (diff) | |
Add Deno.chown (#2292)
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; |
