name = "go-import-responder" main = "worker.js" compatibility_date = "2025-09-01" # Bind the worker to go.moleculesai.app at the zone root + every path # under it. The route pattern uses a wildcard so /core/platform, # /controlplane, /cli, /plugin/gh-identity all hit the same worker. routes = [ { pattern = "go.moleculesai.app/*", zone_name = "moleculesai.app" }, ] # No KV / R2 / Durable Objects bindings — the responder is fully # stateless and serves from an in-memory MODULE_MAP. Keeps cold-start # < 5ms and removes a cache layer that could go stale.