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# 6module BeEF 7 module API 8 module Configuration 9 # @note Defined API Paths 10 API_PATHS = { 11 'module_configuration_load' => :module_configuration_load 12 }.freeze 13 14 # Fires just after module configuration is loaded and merged 15 # @param [String] mod module key 16 def module_configuration_load(mod); end 17 end 18 end 19end 20 21