File: __init__.py

package info (click to toggle)
python-aiomeasures 0.5.14-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 672 kB
  • sloc: python: 5,173; makefile: 159
file content (19 lines) | stat: -rw-r--r-- 341 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
"""
    AIO Measures
    ~~~~~~~~~~~~

"""

from ._version import get_versions
from .checks import *
from .clients import *
from .events import *
from .metrics import *

__all__ = (checks.__all__
           + clients.__all__
           + events.__all__
           + metrics.__all__)

__version__ = get_versions()['version']
del get_versions