mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-22 01:27:46 +01:00
8 lines
218 B
JavaScript
8 lines
218 B
JavaScript
|
import { aggregation } from '~/library/js/utils'
|
||
|
import BaseClient from '~/library/js/base-client'
|
||
|
import HttpClient from './http-client'
|
||
|
|
||
|
export default class Client extends aggregation(
|
||
|
BaseClient, HttpClient
|
||
|
) {}
|