https://github.com/datumbrain/kss-go-workspace
https://github.com/datumbrain/kss-go-workspace
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/datumbrain/kss-go-workspace
- Owner: datumbrain
- Created: 2022-05-25T13:50:25.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-05-25T15:06:07.000Z (about 4 years ago)
- Last Synced: 2025-08-31T16:04:13.903Z (9 months ago)
- Language: Go
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# go-workspace
**golang-1.18** _multi-module workspaces_
Make sure that you’ve installed `Go` at `Go 1.18` or later using the links at [go.dev/dl.](https://go.dev/dl/)
```shell
$ go version
go version go1.18 darwin/arm64
```
## Project structure
```
.
├── README.md
├── worspace
├── app1
│ ├── go.mod
│ └── main.go
└── app2
├── go.mod
└── main.go
├── go.work
```
## Reference
For understanding of `go workspace` read the below mentioned blog.
[Go Workspace](https://blog.datumbrain.com/2022/05/25/go-workspace.html)