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

https://github.com/takeruun/go-library-sample

サンプル 自作Go製ライブラリ
https://github.com/takeruun/go-library-sample

golang library

Last synced: about 2 months ago
JSON representation

サンプル 自作Go製ライブラリ

Awesome Lists containing this project

README

          

# インストール方法
```
go get github.com/takeruun/go-library-sample
```

# 使い方
```go
package main

import (
sample "github.com/takeruun/go-library-sample"
)

func main() {
sample.Say()
sample.SayV1("message")
}
```
```
$ go run main.go
This is sample go libray
Message: message
```