Add NeonClient class and its methods

This commit is contained in:
2024-01-13 14:44:06 -05:00
parent c340474db4
commit c21bb44142
3 changed files with 2 additions and 1 deletions
+1
View File
@@ -0,0 +1 @@
from .client import NeonClient
+1 -1
View File
@@ -1,7 +1,7 @@
from typing import List
import requests
from model import *
from .model import *
class NeonAPI:
View File