Files
ptools/util/wxpusher/__init__.py
2023-05-06 23:38:06 +08:00

19 lines
344 B
Python

#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Init for WxPusher.
File: __init__.py
Author: huxuan
Email: i(at)huxuan.org
"""
from .exceptions import WxPusherException
from .exceptions import WxPusherNoneTokenException
from .wxpusher import WxPusher
__all__ = [
'WxPusher',
'WxPusherException',
'WxPusherNoneTokenException',
]