This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2020-11-25 12:58:32 +00:00
|
|
|
from teal.resource import Resource
|
2020-11-23 17:03:06 +00:00
|
|
|
from ereuse_devicehub.resources.metric.schema import Metric
|
2020-11-25 12:58:32 +00:00
|
|
|
from ereuse_devicehub.resources.metric.views import MetricsView
|
2020-11-23 17:03:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
class MetricDef(Resource):
|
|
|
|
__type__ = 'Metric'
|
|
|
|
VIEW = MetricsView
|
|
|
|
SCHEMA = Metric
|
|
|
|
AUTH = True
|