add route Conversion and API Wallet
This commit is contained in:
@ -3,6 +3,7 @@ interface apiConfigProps {
|
||||
service_customer: string;
|
||||
service_master_data: string;
|
||||
service_transaction: string;
|
||||
service_wallet: string;
|
||||
}
|
||||
|
||||
const API_URL = import.meta.env.VITE_APP_API_URL;
|
||||
@ -12,7 +13,8 @@ const apiConfig: apiConfigProps = {
|
||||
service_customer: `${API_URL}/c`,
|
||||
// service_master_data: `${API_URL}/m`
|
||||
service_master_data: `${API_URL}/t`,
|
||||
service_transaction: `${API_URL}/tt`
|
||||
service_transaction: `${API_URL}/tt`,
|
||||
service_wallet: `${API_URL}/w`
|
||||
};
|
||||
|
||||
export { apiConfig };
|
||||
|
||||
Reference in New Issue
Block a user