const hello = await api.example.hello.useQuery()
{ result: { data: ... }}
{ result: { data: ... } meta: { time: 10ms, }}
export const router = t.router({ helloWorld: t.procedure.query(async (req) => "Hello World"),})
req
const handler = async (req:?) => "Hello World"export const router = t.router({ helloWorld: t.procedure.query(hander)})