mirror of
https://github.com/mainflux/mainflux.git
synced 2025-04-27 13:48:49 +08:00

* Add golangci-linter to CI script Signed-off-by: Ivan Milošević <iva@blokovi.com> * add no-config flag Signed-off-by: Ivan Milošević <iva@blokovi.com> * disable staticcheck Signed-off-by: Ivan Milošević <iva@blokovi.com> * disable all except errcheck Signed-off-by: Ivan Milošević <iva@blokovi.com> * add more linters Signed-off-by: Ivan Milošević <iva@blokovi.com> * add verbose flag for debug decrease concurrency to 1 Signed-off-by: Ivan Milošević <iva@blokovi.com> * remove errcheck and verbose flag Signed-off-by: Ivan Milošević <iva@blokovi.com> * enable just golint Signed-off-by: Ivan Milošević <iva@blokovi.com> * fix lint errors Signed-off-by: Ivan Milošević <iva@blokovi.com>
11 lines
513 B
Go
11 lines
513 B
Go
// Copyright (c) Mainflux
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
// Package twins contains the domain concept definitions needed to support
|
|
// Mainflux twins service functionality. Twin is a semantic representation
|
|
// of a real world entity, be it device, application or something else.
|
|
// It holds the sequence of attribute based definitions of a real world
|
|
// thing and refers to the time series of definition based states that
|
|
// hold the historical data about the represented real world thing.
|
|
package twins
|