You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
324 B
14 lines
324 B
7 years ago
|
package com.xsn.explorer.data
|
||
|
|
||
|
import com.alexitc.playsonify.core.ApplicationResult
|
||
|
import com.xsn.explorer.models.Statistics
|
||
|
|
||
|
import scala.language.higherKinds
|
||
|
|
||
|
trait StatisticsDataHandler[F[_]] {
|
||
|
|
||
|
def getStatistics(): F[Statistics]
|
||
|
}
|
||
|
|
||
|
trait StatisticsBlockingDataHandler extends StatisticsDataHandler[ApplicationResult]
|