Skip to content

Commit

Permalink
refactor: shell projects
Browse files Browse the repository at this point in the history
  • Loading branch information
doctrino committed Jan 19, 2024
1 parent c83e41e commit d0bbf7b
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
17 changes: 17 additions & 0 deletions cognite/client/_api/projects.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
from cognite.client._api_client import APIClient


class FilesAPI(APIClient):
_RESOURCE_PATH = "/projects"

def create(self) -> None:
raise NotImplementedError

def retrieve(self) -> None:
raise NotImplementedError

def update(self) -> None:
raise NotImplementedError

def list(self) -> None:
raise NotImplementedError
6 changes: 6 additions & 0 deletions cognite/client/data_classes/projects.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
from cognite.client.data_classes._base import CogniteResource


class Project(CogniteResource):
def __init__(self, name: str, url_name: str):
...

0 comments on commit d0bbf7b

Please sign in to comment.