Files
acp/fs_test.go
2023-05-07 16:19:11 +08:00

13 lines
215 B
Go

package acp
import "testing"
func TestFS(t *testing.T) {
mpCache, err := getMountpointCache()
if err != nil {
panic(err)
}
t.Log("mp cahce", mpCache("/Users/cuijingning/go/src/github.com/abc950309/acp"))
}