import { extension } from '@heyputer/backend/src/extensions'; const page = ` Puter Worker Sandbox Playground

Puter Worker Sandbox Playground

Use this page to interact with the puter APIs in the same sandbox as your worker.

Code

Logs


            
`; extension.get( '/', { requireAuth: false, subdomain: 'worker-sandbox' }, (_req, res) => { res.type('html').send(page); }, );