9 lines
248 B
Go
9 lines
248 B
Go
|
package arlo_golang
|
||
|
|
||
|
// 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
|