From ec9080f34c936d9af56cca68de664954053bf423 Mon Sep 17 00:00:00 2001 From: "Yingbo (Max) Wang" Date: Tue, 7 May 2019 18:58:58 -0700 Subject: Add Deno.chown (#2292) --- cli/msg.fbs | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'cli/msg.fbs') 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; -- cgit v1.2.3