mirror of
https://github.com/AlexxIT/go2rtc.git
synced 2025-09-26 20:31:11 +08:00
14 lines
276 B
Go
14 lines
276 B
Go
package bubble
|
|
|
|
import (
|
|
"github.com/AlexxIT/go2rtc/internal/streams"
|
|
"github.com/AlexxIT/go2rtc/pkg/bubble"
|
|
"github.com/AlexxIT/go2rtc/pkg/core"
|
|
)
|
|
|
|
func Init() {
|
|
streams.HandleFunc("bubble", func(source string) (core.Producer, error) {
|
|
return bubble.Dial(source)
|
|
})
|
|
}
|