[Files Refactor] Cleanup (#2893)

* Clean up notes for develop merge
* Remove commented code
* Lint
This commit is contained in:
WithoutPants
2022-09-07 16:50:15 +10:00
committed by GitHub
parent 9e08edc76f
commit cfc8222b9a
14 changed files with 19 additions and 1240 deletions

12
pkg/utils/strings_test.go Normal file
View File

@@ -0,0 +1,12 @@
package utils
import "fmt"
func ExampleStrFormat() {
fmt.Println(StrFormat("{foo} bar {baz}", StrFormatMap{
"foo": "bar",
"baz": "abc",
}))
// Output:
// bar bar abc
}