Files
gocryptotrader/cmd/documentation/common_templates/common_readme.tmpl
Adrian Gallagher f5914e8c10 Engine changes
2019-05-22 17:06:38 +10:00

24 lines
491 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 := common.StringToUpper(testString)
// upper == "AAAAA"
```
### Please click GoDocs chevron above to view current GoDoc information for this package
{{template "contributions"}}
{{template "donations"}}
{{end}}