mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2026-03-01 13:16:42 +00:00
7 lines
243 B
TypeScript
7 lines
243 B
TypeScript
import type Bottle from 'bottlejs';
|
|
import { buildShlinkApiClient } from './ShlinkApiClientBuilder';
|
|
|
|
export const provideServices = (bottle: Bottle) => {
|
|
bottle.serviceFactory('buildShlinkApiClient', buildShlinkApiClient, 'HttpClient');
|
|
};
|