blob: e20752648fb9a463c89d980f9566a601146c23e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
"""all dealing with leap-providers: definition files, updating"""
from leap.base.config import JSONLeapConfig
from leap.base import specs
class LeapProviderDefinition(JSONLeapConfig):
slug = 'definition.json'
spec = specs.leap_provider_spec
class LeapProviderSet(object):
# we gather them from the filesystem
# TODO: (MVS+)
def __init__(self):
self.count = 0
|