mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-23 09:30:31 +03:00
6 lines
243 B
TypeScript
6 lines
243 B
TypeScript
import type Bottle from 'bottlejs';
|
|
import { buildShlinkApiClient } from './ShlinkApiClientBuilder';
|
|
|
|
export const provideServices = (bottle: Bottle) => {
|
|
bottle.serviceFactory('buildShlinkApiClient', buildShlinkApiClient, 'HttpClient');
|
|
};
|