mirror of
https://github.com/pese-git/cherrypick.git
synced 2026-01-24 05:25:19 +00:00
6 lines
101 B
Dart
6 lines
101 B
Dart
import 'package:dart_di/scope.dart';
|
|
|
|
abstract class Factory<T> {
|
|
T createInstance(Scope scope);
|
|
}
|