mirror of
https://github.com/tgbot-collection/YYeTsBot.git
synced 2025-11-25 11:29:38 +08:00
9 lines
242 B
JavaScript
9 lines
242 B
JavaScript
function accessMetrics(type) {
|
|
axios.post('/api/metrics?type=' + type)
|
|
.then(function (response) {
|
|
// console.log(response);
|
|
})
|
|
.catch(function (error) {
|
|
// console.log(error);
|
|
});
|
|
} |