package common func IntToPtr(x int) *int { return &x } func BoolToPtr(x bool) *bool { return &x }