mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2026-03-03 06:11:48 +00: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;
|