GoHubX is a simple Go project to demonstrate the basics of building and structuring a Go application.
GoHubX/
├── go.mod
├── go.sum
├── greetings
│ ├── greetings.go
│ └── greetings_test.go
└── hello
└── hello.go
- Go 1.16 or later
- Clone the repository:
git clone https://github.com/sattyamjjain/GoHubX.git
cd GoHubX- Tidy up the dependencies:
go mod tidygo run hello/hello.gogo test ./greetingsContributions are welcome! Please open an issue or submit a pull request.