add revoke

This commit is contained in:
2025-09-17 16:51:35 -03:00
parent 207231cff6
commit b2303fc60a
18 changed files with 411 additions and 140 deletions

View File

@@ -1,12 +1,13 @@
import {
type RouteConfig,
index,
layout,
route
route,
type RouteConfig
} from '@react-router/dev/routes'
export default [
layout('routes/layout.tsx', [index('routes/index.tsx')]),
route('/authorize', 'routes/authorize.ts'),
route('/token', 'routes/token.ts')
route('/token', 'routes/token.ts'),
route('/revoke', 'routes/revoke.ts')
] satisfies RouteConfig