6 lines
69 B
Go
6 lines
69 B
Go
|
package utils
|
||
|
|
||
|
func GetBoolPointer(t bool) *bool {
|
||
|
return &t
|
||
|
}
|