chore: update app version to 1.3.35+32, change build mode to debug, and refactor poultry farm inspection routes and logic for improved structure

This commit is contained in:
2025-12-08 10:27:24 +03:30
parent b4cf137351
commit 9b68cb6bc3
43 changed files with 358 additions and 243 deletions

View File

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

View File

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

View File

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