mirror of https://github.com/stashapp/stash.git
13 lines
178 B
Go
13 lines
178 B
Go
|
package utils
|
||
|
|
||
|
import "fmt"
|
||
|
|
||
|
func ExampleStrFormat() {
|
||
|
fmt.Println(StrFormat("{foo} bar {baz}", StrFormatMap{
|
||
|
"foo": "bar",
|
||
|
"baz": "abc",
|
||
|
}))
|
||
|
// Output:
|
||
|
// bar bar abc
|
||
|
}
|