10 lines
214 B
Go
10 lines
214 B
Go
|
package jobspec
|
||
|
|
||
|
// These functions are copied from helper/funcs.go
|
||
|
// added here to avoid jobspec depending on any other package
|
||
|
|
||
|
// intToPtr returns the pointer to an int
|
||
|
func intToPtr(i int) *int {
|
||
|
return &i
|
||
|
}
|