15 lines
325 B
Ruby
15 lines
325 B
Ruby
#
|
|
# Copyright (c) 2006-2025 Wade Alcorn - wade@bindshell.net
|
|
# Browser Exploitation Framework (BeEF) - https://beefproject.com
|
|
# See the file 'doc/COPYING' for copying permission
|
|
#
|
|
module BeEF
|
|
module Core
|
|
module Models
|
|
class Autoloading < BeEF::Core::Model
|
|
belongs_to :command
|
|
end
|
|
end
|
|
end
|
|
end
|