mirror of
https://github.com/langhuihui/monibuca.git
synced 2025-12-24 13:48:04 +08:00
12 lines
170 B
Go
12 lines
170 B
Go
package box
|
|
|
|
type FreeBox = DataBox
|
|
|
|
func CreateFreeBox(data []byte) *FreeBox {
|
|
return CreateDataBox(TypeFREE, data)
|
|
}
|
|
|
|
func init() {
|
|
RegisterBox[*FreeBox](TypeFREE)
|
|
}
|