Consolidate all service definitions in one module

This commit is contained in:
Alejandro Celaya
2025-11-15 10:33:42 +01:00
parent 373f0dbbbb
commit 4b655761c6
6 changed files with 50 additions and 79 deletions

View File

@@ -1,7 +0,0 @@
import type Bottle from 'bottlejs';
import { AppFactory } from '../App';
export const provideServices = (bottle: Bottle) => {
// Components
bottle.factory('App', AppFactory);
};