mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2026-02-27 04:06:39 +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;
|