Files
gocryptotrader/cmd/documentation/common_templates/common_readme.tmpl
2019-06-04 17:04:32 +10:00

24 lines
486 B
Cheetah

{{define "common" -}}
{{template "header" .}}
## Current Features for {{.Name}}
#### This package collates basic broad functions that are used throughout this codebase.
+ Coding example
```go
import "github.com/thrasher-/gocryptotrader/common"
testString := "aAaAa"
upper := strings.ToUpper(testString)
// upper == "AAAAA"
```
### Please click GoDocs chevron above to view current GoDoc information for this package
{{template "contributions"}}
{{template "donations"}}
{{end}}