Initial bootrap of application

- Creates scaffold for router and server
- Main program set up for environment, OS signal listener
- Makefile generic commands
This commit is contained in:
2021-06-17 17:06:21 -04:00
parent 61e39b6c2f
commit 336b21a835
14 changed files with 307 additions and 2 deletions
+10
View File
@@ -0,0 +1,10 @@
module github.com/davidlick/supermarket-api
go 1.16
require (
github.com/go-chi/chi v1.5.4 // indirect
github.com/joho/godotenv v1.3.0 // indirect
github.com/kelseyhightower/envconfig v1.4.0 // indirect
github.com/sirupsen/logrus v1.8.1 // indirect
)