Initial commit, pt. 47

This commit is contained in:
Dmitrii Okunev
2024-07-21 01:16:17 +01:00
parent 1332d9a855
commit e28719f514
26 changed files with 984 additions and 274 deletions

7
pkg/streamserver/util.go Normal file
View File

@@ -0,0 +1,7 @@
package streamserver
func assert(b bool) {
if !b {
panic("assertion failed")
}
}