blob: b6e31dff997fea3150ec26a6325acd7cae0e8403 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import AbstractAPI from './abstract-api.js';
// Actual RESTAPI object
class RESTAPI extends AbstractAPI
{
constructor() {
super('api.php');
}
}
export default RESTAPI;
export const api = new RESTAPI();
|