Initial support for in-house apps on iOS/iPadOS (#34802)

This commit is contained in:
Martin Angers
2025-10-28 08:33:58 -04:00
committed by GitHub
parent 437cb9ca96
commit cab7cc15be
51 changed files with 5217 additions and 478 deletions
+5
View File
@@ -71,3 +71,8 @@ func Int64(x int64) *int64 {
func Duration(x time.Duration) *time.Duration {
return &x
}
// T is the generic version to get the pointer of any type.
func T[T any](x T) *T {
return &x
}