Skip to content

Commit

Permalink
WIP: Made publicly accessable Capabilities package-public
Browse files Browse the repository at this point in the history
  • Loading branch information
s-kostyuk committed Mar 21, 2018
1 parent 5e39813 commit 7dc5f16
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions dpl/things/capabilities/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,16 @@
different interfaces like a set of properties and methods,
that can be provided by different implementations of a Thing
"""

from .actuator import Actuator
from .has_state import HasState
from .is_active import IsActive
from .on_off import OnOff
from .open_closed import OpenClosed
from .has_value import HasValue


__all__ = (
'Actuator', 'HasState', 'HasValue', 'IsActive',
'OnOff', 'OpenClosed', 'HasValue'
)

0 comments on commit 7dc5f16

Please sign in to comment.