Work fork of the thin proxy SGX that represents JMP.chat itself
1# frozen_string_literal: true 2 3module Blather 4 class JID 5 def with(node: self.node, domain: self.domain, resource: self.resource) 6 self.class.new(node, domain, resource) 7 end 8 end 9end