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