Completed
Push — master ( 72b331...d4b7d2 )
by Steffen
02:14
created

kuon.watcher.adapters.bitskins   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 6
dl 0
loc 10
rs 10
c 0
b 0
f 0
1
#!/usr/bin/python
2
# -*- coding: utf-8 -*-
3
4
from kuon.watcher.adapters.bitskins.pricing_adapter import PricingAdapter
5
from kuon.watcher.adapters.bitskins.sales_adapter import BitSkinsSalesAdapter
6
7
__all__ = [
8
    PricingAdapter.__name__,
9
    BitSkinsSalesAdapter.__name__
10
]
11