├── .idea ├── .gitignore ├── immoscrapper.iml ├── misc.xml ├── modules.xml └── vcs.xml ├── datasets.go ├── dbinjector.go ├── main.go ├── parser.go └── scanner.go /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse07232020/Scrapping_API_GoLang/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/immoscrapper.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse07232020/Scrapping_API_GoLang/HEAD/.idea/immoscrapper.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse07232020/Scrapping_API_GoLang/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse07232020/Scrapping_API_GoLang/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse07232020/Scrapping_API_GoLang/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /datasets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse07232020/Scrapping_API_GoLang/HEAD/datasets.go -------------------------------------------------------------------------------- /dbinjector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse07232020/Scrapping_API_GoLang/HEAD/dbinjector.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkhorse07232020/Scrapping_API_GoLang/HEAD/main.go -------------------------------------------------------------------------------- /parser.go: -------------------------------------------------------------------------------- 1 | package main 2 | -------------------------------------------------------------------------------- /scanner.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | --------------------------------------------------------------------------------