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

org.elasticmq.rest.sqs.directives.ElasticMQDirectives.scala Maven / Gradle / Ivy

The newest version!
package org.elasticmq.rest.sqs.directives

import akka.http.scaladsl.server.{Directives, Route}
import org.elasticmq.rest.sqs.{ActorSystemModule, QueueManagerActorModule}
import org.elasticmq.util.Logging

trait ElasticMQDirectives extends Directives
  with RespondDirectives
  with FutureDirectives
  with ExceptionDirectives
  with QueueDirectives
  with QueueManagerActorModule
  with ActorSystemModule
  with AnyParamDirectives
  with RejectionDirectives
  with Logging {

  def rootPath(body: Route) = {
    path("") {
      body
    }
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy