service修正

This commit is contained in:
rca 2024-07-17 07:25:07 +09:00
parent 83032f8ae0
commit 982e92e693

View File

@ -1,9 +1,13 @@
import api from '../api'
class MetaService {
async getMeta() {
return await api.get<any>('/meta');
}
async getMeta() {
return await api.get<any>('/meta');
}
async getPing() {
return await api.get<any>('/meta/ping');
}
}
export default new MetaService();