mirror of
https://github.com/livekit/livekit.git
synced 2026-07-28 20:49:26 +00:00
10 lines
271 B
Go
10 lines
271 B
Go
package agent
|
|
|
|
const DefaultTargetLoad = 0.7
|
|
|
|
type Config struct {
|
|
EnableUserDataRecording bool `yaml:"enable_user_data_recording"`
|
|
EnableUserDataRedaction bool `yaml:"enable_user_data_redaction"`
|
|
TargetLoad float32 `yaml:"target_load,omitempty"`
|
|
}
|