An open API service indexing awesome lists of open source software.

https://github.com/tourcoder/gomoddemo

go mod demo
https://github.com/tourcoder/gomoddemo

Last synced: about 1 month ago
JSON representation

go mod demo

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)