1
0
mirror of https://github.com/interviewstreet/go-jira.git synced 2025-06-29 00:21:53 +02:00

Fixed bool type for release version

This commit is contained in:
Klyahin Aleksey
2021-01-25 20:16:14 +03:00
parent 3754d5a5c6
commit 4a5830d453
4 changed files with 15 additions and 5 deletions

9
types.go Normal file
View File

@ -0,0 +1,9 @@
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
}