如何分包
一、去除无意义包
1.1 案例分析
utils/
├── concurrency.go
├── file.go
├── file_test.go
├── rander.go
├── rand.go
├── rand_test.go
├── string.go
├── testdata
│ ├── existdir
│ │ └── existfile
│ ├── files
│ │ ├── xxx.toml
│ │ └── xxx.txt
│ └── so
│ └── CVE_2017_0427.so
├── utils.go
└── utils_test.go1.2 解决方法
Last updated