├── .gitignore ├── Dockerfile ├── Makefile ├── README.md ├── go.mod ├── go.sum ├── handlers ├── container.go ├── health.go ├── products.go └── products_test.go ├── infra └── main.tf ├── latire.png ├── main.go ├── migrations ├── 20200823061827_users.sql └── 20200826112343_products.sql ├── repositories ├── container.go ├── product.go └── user.go ├── services ├── container.go ├── product.go ├── renner.go ├── riachuelo.go ├── telegram.go └── user.go └── structs ├── product.go ├── response.go ├── telegram.go └── user.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorHalfeld/latirebot/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorHalfeld/latirebot/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorHalfeld/latirebot/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorHalfeld/latirebot/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorHalfeld/latirebot/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorHalfeld/latirebot/HEAD/go.sum -------------------------------------------------------------------------------- /handlers/container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorHalfeld/latirebot/HEAD/handlers/container.go -------------------------------------------------------------------------------- /handlers/health.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorHalfeld/latirebot/HEAD/handlers/health.go -------------------------------------------------------------------------------- /handlers/products.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorHalfeld/latirebot/HEAD/handlers/products.go -------------------------------------------------------------------------------- /handlers/products_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorHalfeld/latirebot/HEAD/handlers/products_test.go -------------------------------------------------------------------------------- /infra/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorHalfeld/latirebot/HEAD/infra/main.tf -------------------------------------------------------------------------------- /latire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorHalfeld/latirebot/HEAD/latire.png -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorHalfeld/latirebot/HEAD/main.go -------------------------------------------------------------------------------- /migrations/20200823061827_users.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorHalfeld/latirebot/HEAD/migrations/20200823061827_users.sql -------------------------------------------------------------------------------- /migrations/20200826112343_products.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorHalfeld/latirebot/HEAD/migrations/20200826112343_products.sql -------------------------------------------------------------------------------- /repositories/container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorHalfeld/latirebot/HEAD/repositories/container.go -------------------------------------------------------------------------------- /repositories/product.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorHalfeld/latirebot/HEAD/repositories/product.go -------------------------------------------------------------------------------- /repositories/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorHalfeld/latirebot/HEAD/repositories/user.go -------------------------------------------------------------------------------- /services/container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorHalfeld/latirebot/HEAD/services/container.go -------------------------------------------------------------------------------- /services/product.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorHalfeld/latirebot/HEAD/services/product.go -------------------------------------------------------------------------------- /services/renner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorHalfeld/latirebot/HEAD/services/renner.go -------------------------------------------------------------------------------- /services/riachuelo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorHalfeld/latirebot/HEAD/services/riachuelo.go -------------------------------------------------------------------------------- /services/telegram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorHalfeld/latirebot/HEAD/services/telegram.go -------------------------------------------------------------------------------- /services/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorHalfeld/latirebot/HEAD/services/user.go -------------------------------------------------------------------------------- /structs/product.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorHalfeld/latirebot/HEAD/structs/product.go -------------------------------------------------------------------------------- /structs/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorHalfeld/latirebot/HEAD/structs/response.go -------------------------------------------------------------------------------- /structs/telegram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorHalfeld/latirebot/HEAD/structs/telegram.go -------------------------------------------------------------------------------- /structs/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IgorHalfeld/latirebot/HEAD/structs/user.go --------------------------------------------------------------------------------