mirror of
https://github.com/livekit/livekit.git
synced 2026-03-30 22:05:39 +00:00
10 lines
205 B
Go
10 lines
205 B
Go
package clientconfiguration
|
|
|
|
import (
|
|
"github.com/livekit/protocol/livekit"
|
|
)
|
|
|
|
type ClientConfigurationManager interface {
|
|
GetConfiguration(clientInfo *livekit.ClientInfo) *livekit.ClientConfiguration
|
|
}
|