18 lines
304 B
Python
18 lines
304 B
Python
__title__ = "pocketbase"
|
|
__description__ = "PocketBase client SDK for python."
|
|
__version__ = "0.8.1"
|
|
|
|
|
|
from .client import Client
|
|
|
|
|
|
class PocketBase(Client):
|
|
"""
|
|
Proxy class for `Client`
|
|
|
|
This is for cosmetic reasons only as you can use the
|
|
`Client` class just the same
|
|
"""
|
|
|
|
pass
|