summaryrefslogtreecommitdiff
path: root/cli/msg.fbs
diff options
context:
space:
mode:
authorYingbo (Max) Wang <maxwyb@gmail.com>2019-05-07 18:58:58 -0700
committerRyan Dahl <ry@tinyclouds.org>2019-05-07 21:58:57 -0400
commitec9080f34c936d9af56cca68de664954053bf423 (patch)
treeede97b27acebc225cc69da70433b626af63cc0e6 /cli/msg.fbs
parent1f7ad17152c03b140c997590c897b89fbfea7cea (diff)
Add Deno.chown (#2292)
Diffstat (limited to 'cli/msg.fbs')
-rw-r--r--cli/msg.fbs7
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;