diff --git a/src/Dribbble.ts b/src/Dribbble.ts index f8c4d27..8ae32cf 100644 --- a/src/Dribbble.ts +++ b/src/Dribbble.ts @@ -64,4 +64,12 @@ export default class Dribbble { }, }; } + + public static get user() { + return { + get: () => { + return Request.fetch({ url: '/user', method: 'GET' }); + }, + }; + } }