mirror of
https://github.com/xaionaro-go/streamctl.git
synced 2025-12-24 12:27:57 +08:00
17 lines
361 B
Go
17 lines
361 B
Go
package obs
|
|
|
|
import (
|
|
streamctl "github.com/xaionaro-go/streamctl/pkg/streamcontrol"
|
|
obs "github.com/xaionaro-go/streamctl/pkg/streamcontrol/obs/types"
|
|
)
|
|
|
|
const ID = obs.ID
|
|
|
|
type Config = obs.Config
|
|
type StreamProfile = obs.StreamProfile
|
|
type PlatformSpecificConfig = obs.PlatformSpecificConfig
|
|
|
|
func InitConfig(cfg streamctl.Config) {
|
|
obs.InitConfig(cfg)
|
|
}
|