refactor: remove unused local and remote data sources, models, and tests for chicken and poultry features to streamline codebase

This commit is contained in:
2025-12-08 16:10:34 +03:30
parent 890be0ded6
commit 455a5a5571
230 changed files with 2812 additions and 3471 deletions

View File

@@ -1,3 +1,5 @@
abstract class PoultryFarmLocalDataSource {
// TODO: Implement local data source methods
}

View File

@@ -1,3 +1,5 @@
abstract class PoultryFarmRemoteDataSource {
Future<void> getPoultryFarms();
}

View File

@@ -1,3 +1,5 @@
abstract class PoultryFarmRepository {
// TODO: Implement repository interface
}