-- This Script is Part of the Prometheus Obfuscator by levno-710 -- -- cli.lua -- -- This Script contains the Code for the Prometheus CLI -- Configure package.path for requiring Prometheus local function script_path() local str = debug.getinfo(2, "S").source:sub(2) return str:match("(.*[/%\\])") or ""; end package.path = script_path() .. "?.lua;" .. package.path; require("src.cli");