add solid queue

This commit is contained in:
2025-06-22 09:17:18 +02:00
parent 7c14e469c9
commit b368a750fe
13 changed files with 257 additions and 14 deletions

View File

@@ -0,0 +1,15 @@
class NetflixShakti
URL = "https://www.netflix.com/de/".freeze
SHAKTI_PART = "BUILD_IDENTIFIER".freeze
def self.call
RestClient.get(URL)
end
def self.current_version
body = call.body
shakti = body.split(SHAKTI_PART)[1].split("\"")[2]
shakti
end
end