Create base url hook

This commit is contained in:
marzban-dev
2024-12-11 20:17:03 +03:30
parent 09a1c46402
commit 95d6b6513b
+6
View File
@@ -0,0 +1,6 @@
const useGetCustomers = () => {
const config = useRuntimeConfig();
return config.public.API_BASE_URL;
};
export default useGetCustomers;