service修正

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

View File

@ -4,6 +4,10 @@ class MetaService {
async getMeta() {
return await api.get<any>('/meta');
}
async getPing() {
return await api.get<any>('/meta/ping');
}
}
export default new MetaService();