| 1234567891011121314151617181920 | //go:build linux && amd64package staticvar DEFAULT_PYTHON_LIB_REQUIREMENTS = []string{	"/usr/local/lib/python3.10",	"/usr/lib/python3.10",	"/usr/lib/python3",	"/usr/lib/x86_64-linux-gnu",	"/etc/ssl/certs/ca-certificates.crt",	"/etc/nsswitch.conf",	"/etc/hosts",	"/etc/resolv.conf",	"/run/systemd/resolve/stub-resolv.conf",	"/run/resolvconf/resolv.conf",	"/etc/localtime",	"/usr/share/zoneinfo",	"/etc/timezone",}
 |