remove barrel for core/structs

This commit is contained in:
jacob
2024-04-30 20:23:17 -05:00
parent 5b33a9d1bb
commit d6eedb1b4d
16 changed files with 32 additions and 25 deletions

View File

@@ -2,7 +2,7 @@ import * as assert from 'assert';
import type { CoreDependencies, DependencyConfiguration } from '../../types/ioc';
import { CoreContainer } from './container';
import { Result } from 'ts-results-es';
import { __Services } from '../_internal';
import * as __Services from '../structures/default-services';
import { AnyFunction } from '../../types/utility';
import type { Logging } from '../interfaces';
import type { UnpackFunction } from 'iti';

View File

@@ -2,7 +2,7 @@ import { Container } from 'iti';
import type { Disposable } from '../interfaces';
import * as assert from 'node:assert';
import { Subject } from 'rxjs';
import { __Services } from '../_internal';
import * as __Services from '../structures/default-services';
import * as Hooks from './hooks';
import { EventEmitter } from 'node:events';