yuuki/libs/__init__.py

13 lines
396 B
Python
Raw Normal View History

2019-12-31 21:45:14 +08:00
# -*- coding: utf-8 -*-
"""
Yuuki_Libs
(c) 2019 Star Inc.
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
"""
2019-08-23 18:12:41 +08:00
from .connection import Yuuki_Connection
2019-12-25 21:35:43 +08:00
from .yuuki import Yuuki, Yuuki_Settings
2019-08-23 18:12:41 +08:00
2019-09-01 12:26:50 +08:00
__all__ = ['Yuuki', "Yuuki_Settings", 'Yuuki_Connection']