start implement generator code

This commit is contained in:
Sergey Penkovsky
2025-05-16 09:30:30 +03:00
parent 9b0741199c
commit b906e927c3
29 changed files with 535 additions and 102 deletions

View File

@@ -3,6 +3,6 @@
/// More dartdocs go here.
library;
export 'src/cherrypick_annotations_base.dart';
export 'injectable.dart';
// TODO: Export any libraries intended for clients of this package.

View File

@@ -0,0 +1,6 @@
library;
/// Отмечает класс как injectable для автоматической регистрации.
class Injectable {
const Injectable();
}

View File

@@ -1,5 +0,0 @@
// Define the Inject annotation
class Inject {
final String? named;
const Inject({this.named});
}