Added store service · labstack/labstack-python@d53b945 · GitHub
Skip to content

Commit d53b945

Browse files
author
Vishal Rana
committed
Added store service
Signed-off-by: Vishal Rana <vishal.rana@verizon.com>
1 parent 5a62159 commit d53b945

3 files changed

Lines changed: 94 additions & 1 deletion

File tree

labstack/__init__.py

Lines changed: 2 additions & 1 deletion

labstack/client.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import requests
22
from .email import _Email
33
from .log import _Log
4+
from .store import _Store
45

56
class Client():
67
def __init__(self, api_key):
@@ -16,6 +17,9 @@ def log(self):
1617
log.app_id = self.app_id
1718
log.app_name = self.app_name
1819
return log
20+
21+
def store(self):
22+
return _Store(self.interceptor)
1923

2024
class _Interceptor(requests.auth.AuthBase):
2125
def __init__(self, api_key):

labstack/store.py

Lines changed: 88 additions & 0 deletions

0 commit comments

Comments
 (0)