gitlab.com/evatix-go/core@v1.3.55/simplewrap/TitleSquare.go (about) 1 package simplewrap 2 3 import ( 4 "fmt" 5 6 "gitlab.com/evatix-go/core/constants" 7 ) 8 9 func TitleSquare( 10 title, value interface{}, 11 ) string { 12 return fmt.Sprintf( 13 constants.SquareTitleWrapFormat, 14 title, 15 value) 16 }