Files
standardnotes-app-web/packages/api/src/Domain/Server/User/Paths.ts

11 lines
168 B
TypeScript

const UserPaths = {
register: '/v1/users',
deleteAccount: (userUuid: string) => `/v1/users/${userUuid}`,
}
export const Paths = {
v1: {
...UserPaths,
},
}