package driver // DeviceType represents human readable device type. DeviceType // can be useful to filter the drivers too. type DeviceType string const ( // Camera represents camera devices Camera DeviceType = "camera" // Microphone represents microphone devices Microphone = "microphone" // Screen represents screen devices Screen = "screen" )