Files
Compass/backend/api/src/get-me.ts
2025-08-27 21:30:05 +02:00

7 lines
190 B
TypeScript

import { type APIHandler } from './helpers/endpoint'
import { getUser } from 'api/get-user'
export const getMe: APIHandler<'me'> = async (_, auth) => {
return getUser({ id: auth.uid })
}