mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2026-02-28 20:56: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');
|
|
};
|