portainer/portainer

View on GitHub
api/http/handler/endpoints/utils.go

Summary

Maintainability
A
0 mins
Test Coverage
package endpoints

func ptr[T any](i T) *T { return &i }

func BoolAddr(b bool) *bool {
    return ptr(b)
}