1# 2# Copyright (c) 2006-2025 Wade Alcorn - [email protected] 3# Browser Exploitation Framework (BeEF) - https://beefproject.com 4# See the file 'doc/COPYING' for copying permission 5# 6 7module BeEF 8 module Core 9 module Models 10 # @note Table stores the rules for the Distributed Engine. 11 class Rule < BeEF::Core::Model 12 has_many :executions 13 end 14 end 15 end 16end 17 18