override protected def configure()

in src/main/scala/com/googlesource/gerrit/plugins/analytics/Module.scala [25:34]


  override protected def configure() {
    bind(classOf[BotLikeExtractor]).to(classOf[BotLikeExtractorImpl])

    install(new CommitsStatisticsCacheModule())
    install(new RestApiModule() {
      override protected def configure() = {
        get(PROJECT_KIND, "contributors").to(classOf[ContributorsResource])
      }
    })
  }