Using Routing DSL

Hey,

I’m currently evaluating the play framework for a new project. I’m looking at something pretty simple but I can’t seem to get it to work. I want to move the simple router for the count example onto the routing DSL. For example

->     /count                       controllers.CountRouter

and then the following lives in the app/controllers dir

package controllers

import javax.inject.Inject
import play.api.routing.Router.Routes
import play.api.routing.SimpleRouter
import play.api.routing.sird._

class CountRouter @Inject()(controller: CountController)
  extends SimpleRouter {

  override def routes: Routes = {
    case GET(p"/") => controller.count
  }
}

But it won’t resolve.

What am I missing?

Moved to https://stackoverflow.com/questions/53090714/sird-url-wont-resolve