freezer/lib/api/download_manager/download_service.dart
Pato05 7a119d281c
fix email login, fix spotify importer
migrate to dio instead of http, with unique cookiejar
2023-10-21 01:12:33 +02:00

12 lines
294 B
Dart

import 'package:freezer/api/download_manager/service_interface.dart';
class DownloadService {
static const NOTIFICATION_ID = 6969;
static const NOTIFICATION_CHANNEL_ID = "freezerdownloads";
final ServiceInterface? service;
DownloadService(this.service);
void run() {}
}