export const ENDPOINTS = {
	getAllTodos: "/todos",
	getTodoById: (key: string | number) => `/todos/${key}`,
};
