All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.twitter.server.handler.ReplyHandler.scala Maven / Gradle / Ivy

There is a newer version: 18.9.1
Show newest version
package com.twitter.server.handler

import com.twitter.finagle.Service
import com.twitter.finagle.http.{Request, Response}
import com.twitter.server.util.HttpUtils.newOk

class ReplyHandler(msg: String) extends Service[Request, Response] {
  def apply(req: Request) = newOk(msg)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy