Files
llamactl/pkg/testutil/helpers.go

11 lines
139 B
Go

package testutil
// Helper functions for pointer fields
func BoolPtr(b bool) *bool {
return &b
}
func IntPtr(i int) *int {
return &i
}