gitlab.com/evatix-go/core@v1.3.55/simplewrap/WithParenthesisQuotation.go (about)

     1  package simplewrap
     2  
     3  import (
     4  	"fmt"
     5  
     6  	"gitlab.com/evatix-go/core/constants"
     7  )
     8  
     9  // WithParenthesisQuotation
    10  //
    11  // (\"%v\")
    12  func WithParenthesisQuotation(
    13  	source interface{},
    14  ) string {
    15  	return fmt.Sprintf(constants.ParenthesisQuotationWrap, source)
    16  }