lila/app/controllers/Round.scala
2013-03-25 18:52:18 +01:00

16 lines
302 B
Scala

package controllers
import lila.api._
import lila.user.Context
import play.api.mvc._
import play.api.mvc.Results._
import play.api.libs.concurrent.Execution.Implicits._
object Round extends LilaController {
def watcher(gameId: String, color: String) = TODO
def player(fullId: String) = TODO
}