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.
18 lines
524 B
18 lines
524 B
package com.xsn.explorer.services
|
|
|
|
import javax.inject.Inject
|
|
|
|
import com.alexitc.playsonify.core.FutureApplicationResult
|
|
import com.xsn.explorer.data.async.StatisticsFutureDataHandler
|
|
import com.xsn.explorer.models.Statistics
|
|
|
|
import scala.concurrent.ExecutionContext
|
|
|
|
class StatisticsService @Inject() (
|
|
statisticsFutureDataHandler: StatisticsFutureDataHandler)(
|
|
implicit ec: ExecutionContext) {
|
|
|
|
def getStatistics(): FutureApplicationResult[Statistics] = {
|
|
statisticsFutureDataHandler.getStatistics()
|
|
}
|
|
}
|
|
|