File size: 361 Bytes
0b619bd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
r"""_summary_
-*- coding: utf-8 -*-
Module : config
File Name : __init__.py
Description : About config.
for example:
```
from config import ConfigReader
config = ConfigReader.load(f, **kwargs)
```
Creation Date : 2024-10-30
Author : Frank Kang([email protected])
"""
from .reader import ConfigReader
__all__ = ['ConfigReader']
|