debian-forge-composer/vendor/github.com/osbuild/blueprint/internal/common/pointers.go
Achilleas Koutsou cf956ff5a6 Delete internal/blueprint/ and import from osbuild/blueprint
Import osbuild/blueprint v1.6.0
2025-04-17 11:17:58 +02:00

5 lines
57 B
Go

package common
func ToPtr[T any](x T) *T {
return &x
}