Files
streamctl/pkg/streamd/typing.go
2024-12-01 14:55:29 +00:00

6 lines
58 B
Go

package streamd
func ptr[T any](in T) *T {
return &in
}