mirror of
https://github.com/Sebclem/hassio-nextcloud-backup.git
synced 2024-11-26 19:06:55 +01:00
7 lines
172 B
TypeScript
7 lines
172 B
TypeScript
|
import type { Message } from "@/types/messages";
|
||
|
import kyClient from "./kyClient";
|
||
|
|
||
|
export function getMessages() {
|
||
|
return kyClient.get("messages").json<Message[]>();
|
||
|
}
|