import 'package:comwell_key_app/services/api.dart';

class PushNotificationRepository {
  final Api api = Api();

  Future<void> registerDeviceAndProfile(String token) async {
    try {
      await api.registerDeviceAndProfileSymplify(token);
    } catch (e) {
      throw Exception('Failed to register push token: $e');
    }
  }
}