5 lines
253 B
TypeScript
5 lines
253 B
TypeScript
import { createClient } from '../../client/client'
|
|
import { loginAuthLoginPost } from '../../client/sdk.gen.ts'
|
|
|
|
const client = createClient({ baseUrl: 'http://localhost:8000' })
|
|
loginAuthLoginPost({ client, body: { email: 'test', password: 'test' } })
|