mirror of
https://github.com/xaionaro-go/streamctl.git
synced 2025-10-05 15:37:00 +08:00
17 lines
367 B
Go
17 lines
367 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 InitConfig(cfg streamctl.Config) {
|
|
types.InitConfig(cfg)
|
|
}
|