gitlab.com/sparetimecoders/build-tools@v0.1.0/pkg/wrappers.go (about)

     1  package pkg
     2  
     3  func String(s string) *string {
     4  	return &s
     5  }
     6  func Bool(b bool) *bool {
     7  	return &b
     8  }