this? ```typescript app.get('/test', (c, ...params) => basicAuth({ username: c.env.USER, password:

this?
app.get('/test', (c, ...params) => basicAuth({ username: c.env.USER, password: c.env.PASS }), (c, ..params) => {
    return c.text('Page test2')
})
Was this page helpful?