Skip to content

Commit

Permalink
Merge branch 'main' into project-tags
Browse files Browse the repository at this point in the history
  • Loading branch information
ps-kwang authored Apr 5, 2024
2 parents 9227a13 + 2846fb2 commit 3c650d2
Show file tree
Hide file tree
Showing 10 changed files with 7,599 additions and 2,430 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Using Shell (macOS, Linux, and Windows using WSL):

```sh
curl -fsSL https://paperspace.com/install.sh | sh
curl -fsSL https://www.paperspace.com/install.sh | sh
```

## Usage
Expand Down
9 changes: 9 additions & 0 deletions api/dataset.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import { client } from "./client.ts";

export const datasets = {
create: client("/datasets").post,
get: client("/datasets/{id}").get,
list: client("/datasets").get,
delete: client("/datasets/{id}").delete,
update: client("/datasets/{id}").put,
};
Loading

0 comments on commit 3c650d2

Please sign in to comment.