Files
gocryptotrader/tools/documentation/common_templates/common_readme.tmpl
Adrian Gallagher 2078ba907f Update URLs for transfer into org repo (#338)
* Update URLs for transfer into org repo

* Update codecov, travis and othe remaining links

* Update appveyor paths
2019-08-09 11:50:39 +10:00

24 lines
495 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-corp/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}}