
com.avsystem.commons.rpc.IsRPC.scala Maven / Gradle / Ivy
The newest version!
package com.avsystem.commons
package rpc
/**
* Typeclass that witnesses if type `T` is annotated as @RPC
*/
sealed trait IsRPC[T]
object IsRPC {
implicit def isRPC[T]: IsRPC[T] = macro macros.rpc.RPCMacros.isRPC[T]
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy