mirror of
https://github.com/vernu/textbee.git
synced 2026-04-18 05:47:41 -04:00
11 lines
220 B
TypeScript
11 lines
220 B
TypeScript
import httpClient from '../lib/httpClient'
|
|
|
|
class StatsService {
|
|
async getStats() {
|
|
const res = await httpClient.get(`/gateway/stats`)
|
|
return res.data.data
|
|
}
|
|
}
|
|
|
|
export const statsService = new StatsService()
|