mirror of
https://github.com/yawaflua/Py-SPW.git
synced 2025-12-10 04:19:31 +02:00
11 lines
178 B
Python
11 lines
178 B
Python
from . import api
|
|
from . import errors
|
|
from . import payment_webserver
|
|
|
|
__all__ = ["Api", "payment_webserver", "errors"]
|
|
__version__ = 1.0
|
|
|
|
|
|
class Api(api.sp_api_base):
|
|
pass
|