endless.core.protocol.EntityIDDecoder.scala Maven / Gradle / Ivy
The newest version!
package endless.core.protocol
/** Decode a string into an entity ID
* @tparam ID
* entity id
*/
trait EntityIDDecoder[+ID] {
def decode(id: String): ID
}