Files
mediadevices/pkg/driver/const.go
2019-12-25 16:13:37 -08:00

14 lines
153 B
Go

package driver
type Kind string
const (
Video Kind = "video"
Audio = "audio"
)
type DeviceType string
const (
Camera DeviceType = "camera"
)