mirror of
https://github.com/nolanlawson/pinafore
synced 2024-12-12 02:07:26 +01:00
8 lines
220 B
JavaScript
8 lines
220 B
JavaScript
import { getWithTimeout } from '../_utils/ajax'
|
|
import { basename } from './utils'
|
|
|
|
export function getInstanceInfo (instanceName) {
|
|
let url = `${basename(instanceName)}/api/v1/instance`
|
|
return getWithTimeout(url)
|
|
}
|