🚚 (mv) change dir name

change lib directory in features to models
This commit is contained in:
2025-10-04 22:58:55 +07:00
parent eca25d29cd
commit 889cb4f2f6
3 changed files with 2 additions and 2 deletions

View File

@ -1,13 +0,0 @@
"use server";
import { api } from "@/shared/lib/ky/connector";
const getOauthProviderList = async () => {
try {
const res = await api.get(`auth/providers`);
return res.json();
} catch (error) {
throw new Error("Failed to fetch OAuth providers", { cause: error });
}
};
export default getOauthProviderList;