F-Droid 在 万物皆可Ollama 中发帖
export default {
async fetch(request) {
const url = new URL(request.url);
if (url.pathname === '/') {
return new Response('Ollama is running', {
status: 200,
headers: {
'Content-Type': 'text/plain; charset=utf-8'
}
});
}
return fetch(request);
}
}