Skip to content

Commit

Permalink
SK-1622: Added methods in controllers
Browse files Browse the repository at this point in the history
  • Loading branch information
saileshwar-skyflow committed Sep 19, 2024
1 parent 6a92153 commit a130899
Show file tree
Hide file tree
Showing 14 changed files with 15 additions and 9 deletions.
2 changes: 1 addition & 1 deletion v2/skyflow/client/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from .skyflow import Skyflow
from ._skyflow import Skyflow
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def __init__(self):
self._vault_config = []
self._connection_config = []
self._skyflow_credentials = None
self._log_level = None
self._log_level = LogLevel.ERROR

def add_vault_config(self, vault_config):
self._vault_config.append(vault_config)
Expand Down
2 changes: 1 addition & 1 deletion v2/skyflow/error/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from skyflow_error import SkyflowError
from _skyflow_error import SkyflowError
File renamed without changes.
2 changes: 1 addition & 1 deletion v2/skyflow/utils/enums/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from enums import LogLevel
from _enums import LogLevel
File renamed without changes.
4 changes: 3 additions & 1 deletion v2/skyflow/vault/controller/_audit.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,7 @@ class Audit:
#members
def __init__(self):
pass
#methods

def list(self):
pass

4 changes: 3 additions & 1 deletion v2/skyflow/vault/controller/_bin_look_up.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@ class BinLookUp:
#members
def __init__(self):
pass
#methods

def get(self):
pass
4 changes: 3 additions & 1 deletion v2/skyflow/vault/controller/_connections.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@ class Connection:
#members
def __init__(self):
pass
#methods

def invoke(self):
pass
4 changes: 2 additions & 2 deletions v2/skyflow/vault/model/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from v2.skyflow.vault.model.insert_request import (
from v2.skyflow.vault.model._insert_request import (
InsertRequest
)

from v2.skyflow.vault.model.insert_response import (
from v2.skyflow.vault.model._insert_response import (
InsertResponse
)
File renamed without changes.
File renamed without changes.

0 comments on commit a130899

Please sign in to comment.