Define basic library structure
This commit is contained in:
10
vue-apps-py/src/vue_apps_py/client.py
Normal file
10
vue-apps-py/src/vue_apps_py/client.py
Normal file
@@ -0,0 +1,10 @@
|
||||
class ClientAPI:
|
||||
client_id: str
|
||||
client_secret: str
|
||||
|
||||
def __init__(self, client_id: str, client_secret: str):
|
||||
self.client_id = client_id
|
||||
self.client_secret = client_secret
|
||||
|
||||
def get_token(self) -> str:
|
||||
return self.client_secret
|
||||
Reference in New Issue
Block a user