lib9p

Go 9P library.
Log | Files | Refs | LICENSE

qid_plan9.go (309B)


      1 //go:build plan9
      2 
      3 package diskfs
      4 
      5 import (
      6 	"io/fs"
      7 )
      8 
      9 type fileID struct{}
     10 
     11 func idFromInfo(path string, fi fs.FileInfo) fileID { return fileID{} }
     12 
     13 // QidPool is the list of Qids in the file system.
     14 type QidPool struct{}
     15 
     16 // newQidPool allocates a QidPool.
     17 func newQidPool() *QidPool {
     18 	return &QidPool{}
     19 }