mirror of
https://github.com/pese-git/cherrypick.git
synced 2026-01-23 21:13:35 +00:00
feat: implement annotations
This commit is contained in:
8
cherrypick_annotations/lib/cherrypick_annotations.dart
Normal file
8
cherrypick_annotations/lib/cherrypick_annotations.dart
Normal file
@@ -0,0 +1,8 @@
|
||||
/// Support for doing something awesome.
|
||||
///
|
||||
/// More dartdocs go here.
|
||||
library;
|
||||
|
||||
export 'src/cherrypick_annotations_base.dart';
|
||||
|
||||
// TODO: Export any libraries intended for clients of this package.
|
||||
@@ -0,0 +1,5 @@
|
||||
// Define the Inject annotation
|
||||
class Inject {
|
||||
final String? named;
|
||||
const Inject({this.named});
|
||||
}
|
||||
Reference in New Issue
Block a user