lib9p

Go 9P library.
Log | Files | Refs

commit c634ec5a305ab7c75b97812255c0b44802c4bc45
parent 2eae6f9e900538a9772e1aa257667df20e56ac1d
Author: Matsuda Kenji <info@mtkn.jp>
Date:   Mon, 16 Oct 2023 09:48:02 +0900

delete unused ClientFS

Diffstat:
Mfs.go | 9---------
1 file changed, 0 insertions(+), 9 deletions(-)

diff --git a/fs.go b/fs.go @@ -8,15 +8,6 @@ type FS interface { Root() File } -type ClientFS struct { - root *ClientFile - client *Client -} - -func (cfs ClientFS) Root() File { - return cfs.root -} - func FSModeToQidType(fm fs.FileMode) QidType { var qt QidType if fm&fs.ModeDir != 0 {