async function GetRecentObits()

in app/services/PlutoCore.ts [53:58]


async function GetRecentObits(wantedCount: number): Promise<PlutoProject[]> {
  const response = await axios.get<PlutoCoreListResponse<PlutoProject>>(
    `/pluto-core/api/project/obits?limit=${wantedCount}`
  );
  return response.data.result;
}