import '../models/sensor_model.dart';
/// Abstract contract untuk IoT service.
abstract class IotService {
Future<SensorModel> fetchSensorData();
}