diff --git a/docs/GUIDE.md b/docs/GUIDE.md index bfd2ffa..48690d4 100644 --- a/docs/GUIDE.md +++ b/docs/GUIDE.md @@ -688,10 +688,10 @@ toes share my-app Every request to your app includes an `x-app-url` header with the app's public-facing URL. When shared, this is the tunnel URL (e.g., `https://myapp.toes.space`). When not shared, it's the local URL (e.g., `http://myapp.toes.local`). This works whether the request arrives through the local proxy or through a tunnel. -Use `appUrl()` from `@because/toes` to read it — never hardcode your app's URL: +Use `appUrl()` from `@because/toes/tools` to read it — never hardcode your app's URL: ```tsx -import { appUrl } from '@because/toes' +import { appUrl } from '@because/toes/tools' app.get('/callback', c => { const url = appUrl(c.req.raw) diff --git a/src/index.ts b/src/index.ts index 3718365..9455366 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1 +1 @@ -export * from './server' +export * from './tools'