ADDED: module for work with api

This commit is contained in:
2023-11-22 20:48:27 +05:00
parent d286da698e
commit ce940f7646
8 changed files with 124 additions and 0 deletions

5
neuroapi/api_method.py Normal file
View File

@@ -0,0 +1,5 @@
class ApiMethod:
api_url: str
def __init__(self, api_url: str) -> None:
self.api_url = api_url