From 211e441dd4016f4824e2a002085838d31b14fc5e Mon Sep 17 00:00:00 2001 From: Chris Wanstrath Date: Sat, 4 Apr 2026 15:05:04 -0700 Subject: [PATCH] Update appUrl import path to @because/toes/tools --- docs/GUIDE.md | 4 ++-- src/index.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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'