mirror of
https://github.com/OpenBankProject/API-Explorer-II.git
synced 2026-02-06 10:47:04 +00:00
7 lines
185 B
TypeScript
7 lines
185 B
TypeScript
import { OBP_API_VERSION, get } from '../obp'
|
|
|
|
// Get API Versions
|
|
export async function getOBPAPIVersions(): Promise<any> {
|
|
return await get(`obp/${OBP_API_VERSION}/api/versions`)
|
|
}
|