22 lines
603 B
Python
22 lines
603 B
Python
from .c2 import C2Integration
|
|
from .strava import StravaIntegration
|
|
from .nk import NKIntegration
|
|
from .sporttracks import SportTracksIntegration
|
|
from .rp3 import RP3Integration
|
|
from .trainingpeaks import TPIntegration
|
|
from .polar import PolarIntegration
|
|
from .intervals import IntervalsIntegration
|
|
|
|
importsources = {
|
|
'c2': C2Integration,
|
|
'strava': StravaIntegration,
|
|
'sporttracks': SportTracksIntegration,
|
|
'trainingpeaks': TPIntegration,
|
|
'nk': NKIntegration,
|
|
'tp':TPIntegration,
|
|
'rp3':RP3Integration,
|
|
'polar': PolarIntegration,
|
|
'intervals': IntervalsIntegration,
|
|
}
|
|
|