8 lines
146 B
JavaScript
8 lines
146 B
JavaScript
import { publicApi } from './http'
|
|
|
|
export async function fetchRunStats() {
|
|
const { data } = await publicApi.get('/run_stats')
|
|
return data
|
|
}
|
|
|