9 lines
199 B
Scala
9 lines
199 B
Scala
/**
|
|
* Copyright (C) 2009-2012 Typesafe Inc. <http://www.typesafe.com>
|
|
*/
|
|
|
|
package akka
|
|
|
|
package object routing {
|
|
type Route = PartialFunction[(akka.actor.ActorRef, Any), Iterable[Destination]]
|
|
}
|