mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-18 23:16:49 +00:00
24 lines
490 B
Cheetah
24 lines
490 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 := strings.ToUpper(testString)
|
|
|
|
// upper == "AAAAA"
|
|
```
|
|
|
|
|
|
### Please click GoDocs chevron above to view current GoDoc information for this package
|
|
{{template "contributions"}}
|
|
{{template "donations"}}
|
|
{{end}}
|