Files
streamctl/pkg/streamcontrol/obs/config.go
2024-10-21 23:10:01 +01:00

21 lines
455 B
Go

package obs
import (
streamctl "github.com/xaionaro-go/streamctl/pkg/streamcontrol"
"github.com/xaionaro-go/streamctl/pkg/streamcontrol/obs/types"
)
const ID = types.ID
type Config = types.Config
type StreamProfile = types.StreamProfile
type PlatformSpecificConfig = types.PlatformSpecificConfig
func init() {
streamctl.RegisterPlatform[PlatformSpecificConfig, StreamProfile](ID)
}
func InitConfig(cfg streamctl.Config) {
types.InitConfig(cfg)
}