gitlab.com/evatix-go/core@v1.3.55/simplewrap/MsgWrapNumber.go (about) 1 package simplewrap 2 3 import ( 4 "fmt" 5 6 "gitlab.com/evatix-go/core/constants" 7 ) 8 9 func MsgWrapNumber(name string, number interface{}) string { 10 return fmt.Sprintf(constants.StringWithBracketWrapNumberFormat, name, number) 11 }