├── LICENSE ├── README.md ├── appstoreparse ├── parse_app_store_listing.go └── parse_app_store_listing_test.go ├── examples └── appadstxtcrawl │ ├── sample_app.go │ └── sample_app_store.html ├── go.mod ├── go.sum └── urlcanonical ├── canonicalize_developer_url.go └── canonicalize_developer_url_test.go /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/ads.txt-parser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/ads.txt-parser/HEAD/README.md -------------------------------------------------------------------------------- /appstoreparse/parse_app_store_listing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/ads.txt-parser/HEAD/appstoreparse/parse_app_store_listing.go -------------------------------------------------------------------------------- /appstoreparse/parse_app_store_listing_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/ads.txt-parser/HEAD/appstoreparse/parse_app_store_listing_test.go -------------------------------------------------------------------------------- /examples/appadstxtcrawl/sample_app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/ads.txt-parser/HEAD/examples/appadstxtcrawl/sample_app.go -------------------------------------------------------------------------------- /examples/appadstxtcrawl/sample_app_store.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/ads.txt-parser/HEAD/examples/appadstxtcrawl/sample_app_store.html -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/ads.txt-parser/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/ads.txt-parser/HEAD/go.sum -------------------------------------------------------------------------------- /urlcanonical/canonicalize_developer_url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/ads.txt-parser/HEAD/urlcanonical/canonicalize_developer_url.go -------------------------------------------------------------------------------- /urlcanonical/canonicalize_developer_url_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InteractiveAdvertisingBureau/ads.txt-parser/HEAD/urlcanonical/canonicalize_developer_url_test.go --------------------------------------------------------------------------------