refactored di library.

This commit is contained in:
Sergey Penkovsky
2021-04-26 09:43:57 +03:00
parent 35879380d0
commit de404d4ee1
23 changed files with 71 additions and 1215 deletions

5
lib/factory.dart Normal file
View File

@@ -0,0 +1,5 @@
import 'package:dart_di/scope.dart';
abstract class Factory<T> {
T createInstance(Scope scope);
}