Improve code again

This commit is contained in:
Benoit Marty 2025-11-19 17:53:12 +01:00
parent 477b15428e
commit a40988894b
7 changed files with 48 additions and 35 deletions

View file

@ -11,5 +11,5 @@ package io.element.android.libraries.workmanager.api
import androidx.work.WorkRequest
interface WorkManagerRequest {
fun build(): List<Result<WorkRequest>>
fun build(): Result<List<WorkRequest>>
}