mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2026-03-10 17:43:51 +00:00
10 lines
271 B
TypeScript
10 lines
271 B
TypeScript
import Bottle from 'bottlejs';
|
|
import { loadMercureInfo } from '../reducers/mercureInfo';
|
|
|
|
const provideServices = (bottle: Bottle) => {
|
|
// Actions
|
|
bottle.serviceFactory('loadMercureInfo', loadMercureInfo, 'buildShlinkApiClient');
|
|
};
|
|
|
|
export default provideServices;
|