mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2025-01-11 10:47:27 +03:00
9 lines
255 B
TypeScript
9 lines
255 B
TypeScript
|
import Bottle from 'bottlejs';
|
||
|
import buildShlinkApiClient from './ShlinkApiClientBuilder';
|
||
|
|
||
|
const provideServices = (bottle: Bottle) => {
|
||
|
bottle.serviceFactory('buildShlinkApiClient', buildShlinkApiClient, 'axios');
|
||
|
};
|
||
|
|
||
|
export default provideServices;
|