list of resellers

This commit is contained in:
hamid zarghami
2026-04-18 15:50:02 +03:30
parent ca47e65602
commit f63d4f3c1d
9 changed files with 147 additions and 3 deletions
@@ -0,0 +1,6 @@
import axios from "../../../config/axios";
export const getResellers = async () => {
const { data } = await axios.get(`/reseller`);
return data;
};