mirror of
https://github.com/livekit/livekit.git
synced 2026-04-26 13:07:39 +00:00
9 lines
202 B
Go
9 lines
202 B
Go
package agent
|
|
|
|
const DefaultTargetLoad = 0.7
|
|
|
|
type Config struct {
|
|
EnableUserDataRecording bool `yaml:"enable_user_data_recording"`
|
|
TargetLoad float32 `yaml:"target_load,omitempty"`
|
|
}
|