2018-09-19 07:07:32 +00:00
|
|
|
package arlo
|
2018-09-17 04:44:41 +00:00
|
|
|
|
|
|
|
// A Camera is a Device of type "camera".
|
|
|
|
// This type is here just for semantics. Some methods explicitly require a device of a certain type.
|
|
|
|
type Camera Device
|
|
|
|
|
|
|
|
// Cameras is an array of Camera objects.
|
|
|
|
type Cameras []Camera
|