lib/virustotal/clients/analysis.rb in virustotalx-1.0.0 vs lib/virustotal/clients/analysis.rb in virustotalx-1.1.0
- old
+ new
@@ -1,11 +1,9 @@
# frozen_string_literal: true
module VirusTotal
module Client
class Analysis < Base
- def get(id)
- _get("/analyses/#{id}") { |json| json }
- end
+ include Action::Get
end
end
end