mirror of
https://github.com/lordmathis/llamactl.git
synced 2025-11-06 00:54:23 +00:00
11 lines
139 B
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
|
|
}
|