v4/utils/strings.go
2025-03-24 22:49:12 -07:00

7 lines
112 B
Go

package utils
import "fmt"
func HeadTitle(text string) string {
return fmt.Sprintf("%s | Roleypoly", text)
}