├── .github └── workflows │ └── go.yml ├── .gitignore ├── Dockerfile ├── cloudbuild.prod.yaml ├── cloudbuild.yml ├── driver.go ├── drivers.json ├── go.mod ├── go.sum └── k8s └── driver.yaml /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratona-microsservico-drivers/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratona-microsservico-drivers/HEAD/Dockerfile -------------------------------------------------------------------------------- /cloudbuild.prod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratona-microsservico-drivers/HEAD/cloudbuild.prod.yaml -------------------------------------------------------------------------------- /cloudbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratona-microsservico-drivers/HEAD/cloudbuild.yml -------------------------------------------------------------------------------- /driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratona-microsservico-drivers/HEAD/driver.go -------------------------------------------------------------------------------- /drivers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratona-microsservico-drivers/HEAD/drivers.json -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module driver 2 | 3 | go 1.13 4 | 5 | require github.com/gorilla/mux v1.7.4 6 | -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratona-microsservico-drivers/HEAD/go.sum -------------------------------------------------------------------------------- /k8s/driver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeedu/maratona-microsservico-drivers/HEAD/k8s/driver.yaml --------------------------------------------------------------------------------