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