A capitalizations name issue can not build golang app

Recently, I’m working on a project which is a URL Shortener with Golang. Here is current architecture. steveyiyo@SteveYis-MacBook-Pro-2 URL-Shortener % tree . ├── README.md ├── config.yaml ├── config.yaml.example ├── data.db ├── details.md ├── dockerfile ├── go.mod ├── go.sum ├── internal │ ├── cache │ │ ├── cache.go │ │ └── cache_test.go │ ├── Database │ │ └── database.go │ └── Tools │ └── tools.go ├── main.go └── package └── utils └── utils....

March 29, 2022 · SteveYi