https://github.com/tourcoder/gomoddemo
go mod demo
https://github.com/tourcoder/gomoddemo
Last synced: about 1 month ago
JSON representation
go mod demo
- Host: GitHub
- URL: https://github.com/tourcoder/gomoddemo
- Owner: tourcoder
- Created: 2021-07-27T13:37:42.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-11-15T08:14:07.000Z (over 3 years ago)
- Last Synced: 2025-07-19T09:28:49.586Z (12 months ago)
- Language: Go
- Size: 1000 Bytes
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Go Mod Demo
======
### How To Use
```
go get github.com/tourcoder/gomoddemo
```
```
package main
import (
"fmt"
"github.com/tourcoder/gomoddemo"
)
func main() {
fmt.Println(gomoddemo.PrintHelloTo("tourcoder"))
}
```
### More
[https://tourcoder.com/how-to-create-a-public-go-mod](https://tourcoder.com/how-to-create-a-public-go-mod)