Init commit

This commit is contained in:
Blossomi Shymae
2024-05-01 20:38:02 -05:00
commit 75bc1827e4
29 changed files with 11845 additions and 0 deletions

9
composables/useClient.ts Normal file
View File

@@ -0,0 +1,9 @@
import { Client } from "~/core/client";
const client = new Client();
export default function useClient(): { client: Client } {
return {
client
}
};