mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2025-01-10 02:07:26 +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');
|
|
};
|