add deployments

This commit is contained in:
Morten Olsen
2025-07-28 22:50:38 +02:00
parent 48f1bde404
commit dd1e5a8124
18 changed files with 698 additions and 11 deletions

View File

@@ -4,9 +4,6 @@ type Dependency<T> = new (services: Services) => T;
class Services {
#instances = new Map<Dependency<unknown>, unknown>();
constructor() {
console.log('Constructor', 'bar');
}
public get log() {
return this.get(LogService);