No matches found in users.
Try switching to another result type using the tabs above.
You can access search results via JSON API by adding format=json
to your query:
https://codesearch.val.run/?q=fetch&page=1&format=json
For typeahead suggestions, use the /typeahead
endpoint:
https://codesearch.val.run/typeahead?q=fetch
Returns an array of strings in format "username" or "username/projectName"
Found 2373 results for "fetch"(306ms)
No matches found in users.
Try switching to another result type using the tabs above.
1import { blob } from "https://esm.town/v/std/blob";
2import { sqlite } from "https://esm.town/v/stevekrouse/sqlite";
3import { TABLE_NAME } from "./updateTable";
45export default async function(req: Request): Promise<Response> {
129const lastSunday = today.startOf("week").minus({ days: 1 });
130131// Fetch relevant memories using the utility function
132const memories = await getRelevantMemories();
133