11 lines
139 B
Python
11 lines
139 B
Python
class BaseConfig:
|
|
"""
|
|
Base config.
|
|
"""
|
|
|
|
def __init__(self):
|
|
pass
|
|
|
|
def as_dict(self):
|
|
return vars(self)
|