Archived
14 lines
237 B
Python
14 lines
237 B
Python
#!/usr/bin/env python3
|
|
# -- coding:utf-8 --
|
|
# @Author: markushammered@gmail.com
|
|
# @Development Tool: PyCharm
|
|
# @Create Time: 2022/3/26
|
|
# @File Name: __init__.py.py
|
|
|
|
|
|
print('Tests models were loaded.')
|
|
|
|
__all__ = [
|
|
'test_decorator'
|
|
]
|