Last active
October 13, 2022 13:54
-
-
Save GregRos/7d17435add0f149f6acc98347daff15f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let USER = 1000; | |
// Logs user in using `auth` | |
export async function login(auth) { /* ... */ } | |
// Gets a list of all squmbles of the user | |
export async function getSqumbles() { /* ... */ } | |
// Gets squmble by ID | |
export async function getSqumble(id) { /* ... */ } | |
// Updates the squggle. Data must include id. | |
export async function updateSquggle(data) { /* ... */ } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment