This commit is contained in:
41666 2025-03-24 22:49:12 -07:00
commit e1909b04b2
16 changed files with 448 additions and 0 deletions

7
utils/strings.go Normal file
View file

@ -0,0 +1,7 @@
package utils
import "fmt"
func HeadTitle(text string) string {
return fmt.Sprintf("%s | Roleypoly", text)
}