platform/archived_packages/relations/lib/angel_relations.dart

9 lines
287 B
Dart
Raw Normal View History

2017-01-30 02:39:11 +00:00
/// Hooks to populate data returned from services, in a fashion
/// reminiscent of a relational database.
library angel_relations;
2017-03-04 21:05:56 +00:00
export 'src/belongs_to_many.dart';
2017-01-30 02:39:11 +00:00
export 'src/belongs_to.dart';
export 'src/has_many.dart';
2017-03-04 21:05:56 +00:00
export 'src/has_many_through.dart';
2017-01-30 02:39:11 +00:00
export 'src/has_one.dart';