lib9p

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

export_fs_test.go (110B)


      1 package lib9p
      2 
      3 import (
      4 	"io/fs"
      5 	"testing"
      6 )
      7 
      8 func TestInterface(t *testing.T) {
      9 	var _ fs.FS = ExportFS{}
     10 }