Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
package endpoints
func ptr[T any](i T) *T { return &i }
func BoolAddr(b bool) *bool {
return ptr(b)
}