openwrt_helloworld/luci-app-openclash/root/usr/share/openclash/YAML.rb
2024-11-09 19:30:46 +08:00

9 lines
196 B
Ruby

module YAML
class << self
alias_method :load, :unsafe_load if YAML.respond_to? :unsafe_load
end
def self.LOG(info)
puts Time.new.strftime("%Y-%m-%d %H:%M:%S") + " #{info}"
end
end