Combining fetch() and email() workers on CF Free
I have two functions Workers, one uses async fetch(request) and the other uses async email(message, env, ctx)
The docs say that I can combine these into a single worker by putting both within the export default { } function, but when I do that I don't see the worker listed under Email > Email Routing > Routing Rules > Edit > Destination.
Is there a trick to get it to show up here, or do I have to have 2 separate workers?
(The disadvantage to having two is I have an array that I have to copy from one to the other every time I add a domain, and it would be easier to just have to update it once)