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 Migration 9 # @note Defined API Paths 10 API_PATHS = { 11 'migrate_commands' => :migrate_commands 12 }.freeze 13 14 # Fired just after the migration process 15 def migrate_commands; end 16 end 17 end 18end 19 20