runable
This commit is contained in:
25
lib/core/database/database.dart
Normal file
25
lib/core/database/database.dart
Normal file
@@ -0,0 +1,25 @@
|
||||
/// Hive CE Database Export
|
||||
///
|
||||
/// This file provides a convenient way to import all database-related
|
||||
/// classes and utilities in a single import.
|
||||
///
|
||||
/// Usage:
|
||||
/// ```dart
|
||||
/// import 'package:worker/core/database/database.dart';
|
||||
/// ```
|
||||
library;
|
||||
|
||||
// Constants
|
||||
export 'package:worker/core/constants/storage_constants.dart';
|
||||
|
||||
// Services
|
||||
export 'package:worker/core/database/database_manager.dart';
|
||||
export 'package:worker/core/database/hive_initializer.dart';
|
||||
export 'package:worker/core/database/hive_service.dart';
|
||||
|
||||
// Models
|
||||
export 'package:worker/core/database/models/cached_data.dart';
|
||||
export 'package:worker/core/database/models/enums.dart';
|
||||
|
||||
// Auto-generated registrar
|
||||
export 'package:worker/hive_registrar.g.dart';
|
||||
Reference in New Issue
Block a user