class RubyConversations::Client

def refresh_jwt

def refresh_jwt
  if @jwt_secret.respond_to?(:call)
    refresh_callable_jwt
  else
    refresh_static_jwt
  end
end