lucharo's picture
Super-squash branch 'main' using huggingface_hub
13812dc
raw
history blame contribute delete
167 Bytes
export default {
async fetch(request) {
const url = new URL(request.url);
url.hostname = 'lucharo-etymology.hf.space';
return fetch(url, request);
}
}