mirror of
https://github.com/kennethreitz/neon-api-python.git
synced 2026-06-05 22:50:18 +00:00
13 lines
170 B
Python
13 lines
170 B
Python
from .client import NeonAPI
|
|
|
|
|
|
def from_environ():
|
|
return NeonAPI.from_environ()
|
|
|
|
|
|
def from_token(token):
|
|
return NeonAPI.from_token(token)
|
|
|
|
|
|
from .client import *
|