ribosome-host-0.9.9.9: lib/Ribosome/Host/Data/RpcName.hs
-- |The name of an RPC handler
module Ribosome.Host.Data.RpcName where
-- |This name is used for the function or command registered in Neovim as well as to internally identify a handler.
newtype RpcName =
RpcName { unRpcName :: Text }
deriving stock (Eq, Show)
deriving newtype (IsString, Ord)