mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-05-22 20:40:23 +08:00
```sh find pkg -name 'models' | while read d; do for f in $d/*.go; do case "$f" in */doc.go) ;; */initdb.go) ;; pkg/lbagent/models/*) ;; *) if grep -q 'Manager = ' $f; then grep -q 'SetVirtualObject' $f || echo $f fi ;; esac done done ```