Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type LocationController ¶
type LocationController interface {
CreateLocation(name string) (*telemetry.Location, error)
GetLocations() ([]*telemetry.Location, error)
}
func NewLocationController ¶
func NewLocationController(locationStore store.LocationStore) LocationController
type TempController ¶
type TempController interface {
CreateTemp(temp float32, locationId int32) (*empty.Empty, error)
GetTemp(locationId int32) ([]float32, error)
}
func NewTempController ¶
func NewTempController(tempStore store.TempStore) TempController
Click to show internal directories.
Click to hide internal directories.