1
0
mirror of https://github.com/strongdm/comply synced 2024-06-28 21:14:22 +00:00
comply/vendor/github.com/andygrunwald/go-jira/types.go

10 lines
179 B
Go

package jira
// Bool is a helper routine that allocates a new bool value
// to store v and returns a pointer to it.
func Bool(v bool) *bool {
p := new(bool)
*p = v
return p
}