-
Notifications
You must be signed in to change notification settings - Fork 751
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f9331c8
commit 30793d8
Showing
12 changed files
with
129 additions
and
133 deletions.
There are no files selected for viewing
3 changes: 1 addition & 2 deletions
3
app/src/main/java/top/yogiczy/mytv/data/repositories/EpgRepository.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
package top.yogiczy.mytv.data.repositories | ||
|
||
|
||
import kotlinx.coroutines.flow.Flow | ||
import top.yogiczy.mytv.data.entities.EpgList | ||
|
||
interface EpgRepository { | ||
fun getEpgs(filteredChannels: List<String>): Flow<EpgList> | ||
suspend fun getEpgs(filteredChannels: List<String>): EpgList | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 1 addition & 2 deletions
3
app/src/main/java/top/yogiczy/mytv/data/repositories/IptvRepository.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
package top.yogiczy.mytv.data.repositories | ||
|
||
import kotlinx.coroutines.flow.Flow | ||
import top.yogiczy.mytv.data.entities.IptvGroupList | ||
|
||
interface IptvRepository { | ||
fun getIptvGroups(): Flow<IptvGroupList> | ||
suspend fun getIptvGroups(): IptvGroupList | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.