27 lines
701 B
Dart
27 lines
701 B
Dart
// Service Index - Barrel File
|
|
// Import semua services dari satu file ini untuk kemudahan
|
|
//
|
|
// Contoh penggunaan:
|
|
// import 'package:mobile_monitoring/data/services/services.dart';
|
|
//
|
|
// Kemudian bisa langsung gunakan semua service:
|
|
// - AuthService
|
|
// - FlowService
|
|
// - GraphService
|
|
// - HidroponikDataService
|
|
// - HomeService
|
|
// - PlantingCyclesService
|
|
// - ProfileService
|
|
// - RegisterService
|
|
// - UsersService
|
|
|
|
export 'auth_service.dart';
|
|
export 'flow_service.dart';
|
|
export 'graph_service.dart';
|
|
export 'hidroponik_data_service.dart';
|
|
export 'home_service.dart';
|
|
export 'planting_cycles_service.dart';
|
|
export 'profile_service.dart';
|
|
export 'register_service.dart';
|
|
export 'users_service.dart';
|