mirror of
https://github.com/pion/mediadevices.git
synced 2025-10-05 08:36:55 +08:00
14 lines
153 B
Go
14 lines
153 B
Go
package driver
|
|
|
|
type Kind string
|
|
|
|
const (
|
|
Video Kind = "video"
|
|
Audio = "audio"
|
|
)
|
|
|
|
type DeviceType string
|
|
|
|
const (
|
|
Camera DeviceType = "camera"
|
|
) |