1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-02-02 06:47:19 +01:00

8 lines
198 B
JavaScript
Raw Normal View History

2018-02-08 08:22:14 -08:00
import { get } from '../_utils/ajax'
import { basename } from './utils'
2018-02-08 22:29:29 -08:00
export function getInstanceInfo (instanceName) {
let url = `${basename(instanceName)}/api/v1/instance`
return get(url)
2018-02-08 22:29:29 -08:00
}