Add new methods to NeonAPI and update client.py

This commit is contained in:
2024-01-17 19:37:20 -05:00
parent 53dda94769
commit f8acb30bfd
2 changed files with 102 additions and 6 deletions
+11
View File
@@ -1 +1,12 @@
from .client import NeonAPI
def from_environ():
return NeonAPI.from_environ()
def from_token(token):
return NeonAPI.from_token(token)
from .client import *