Notes/src/routes/api/tasks.ts

6 lines
125 B
TypeScript
Raw Normal View History

2025-02-18 19:06:02 +02:00
import * as tasksService from "../../services/tasks.js";
export function getTasks() {
return tasksService.getTasks();
}