feat: add wildcard job

This commit is contained in:
崔竞宁
2023-05-07 16:19:11 +08:00
parent 6351045e0f
commit 8502bf37dc
13 changed files with 287 additions and 161 deletions

12
fs_test.go Normal file
View File

@@ -0,0 +1,12 @@
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"))
}