···44import {default as createShortLink} from './createShortLink.js'
55import {default as health} from './health.js'
66import {default as redirect} from './redirect.js'
77+import {default as root} from './root.js'
78import {default as shortLink} from './shortLink.js'
89import {default as siteAssociation} from './siteAssociation.js'
910···1415 app = siteAssociation(ctx, app) // GET /.well-known/apple-app-site-association
1516 app = redirect(ctx, app) // GET /redirect
1617 app = createShortLink(ctx, app) // POST /link
1818+ app = root(ctx, app) // GET / (redirect to bsky.app on root)
1719 app = shortLink(ctx, app) // GET /:linkId (should go last due to permissive matching)
1820 return app
1921}