diff options
Diffstat (limited to 'cli/msg.fbs')
-rw-r--r-- | cli/msg.fbs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/cli/msg.fbs b/cli/msg.fbs index 82a3d573d..ad9fb444e 100644 --- a/cli/msg.fbs +++ b/cli/msg.fbs @@ -74,6 +74,8 @@ union Any { StatRes, Symlink, Truncate, + HomeDir, + HomeDirRes, Utime, WorkerGetMessage, WorkerGetMessageRes, @@ -446,6 +448,12 @@ table Truncate { len: uint; } +table HomeDir {} + +table HomeDirRes { + path: string; +} + table Utime { filename: string; atime: uint64; |