2022-10-17 23:46:04 +00:00
|
|
|
const axios = require('axios').default;
|
|
|
|
|
2023-05-04 19:22:22 +00:00
|
|
|
const loginCheckEndpoint = 'https://ez-pp.farm/login/check';
|
2022-10-17 23:46:04 +00:00
|
|
|
|
|
|
|
const performLogin = async (username, password) => {
|
|
|
|
const result = await axios.post(loginCheckEndpoint, { username, password });
|
|
|
|
return result.data;
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = { performLogin };
|