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