mirror of
https://github.com/xaionaro-go/streamctl.git
synced 2025-12-24 12:27:57 +08:00
12 lines
123 B
Go
12 lines
123 B
Go
package streamd
|
|
|
|
func ptr[T any](in T) *T {
|
|
return &in
|
|
}
|
|
|
|
func assert(b bool) {
|
|
if !b {
|
|
panic("assertion failed")
|
|
}
|
|
}
|