12 lines
282 B
Go
12 lines
282 B
Go
// Copyright (c) 2024 Celestino Amoroso (celestino.amoroso@gmail.com).
|
|
// All rights reserved.
|
|
|
|
// expander.go
|
|
package text
|
|
|
|
func ExpandStringTemplate(ctx ExpanderContext, template string) (result string, err error) {
|
|
AddBaseFuncs(ctx)
|
|
result, err = Scan(ctx, template)
|
|
return
|
|
}
|