mirror of
https://github.com/cliffe/SecGen.git
synced 2026-02-21 19:28:02 +00:00
11 lines
173 B
Ruby
11 lines
173 B
Ruby
#Contains common components that modules will inherit from.
|
|
class BaseModule
|
|
|
|
# Name of the module
|
|
attr_accessor :name
|
|
|
|
#Type of the module
|
|
attr_accessor :type
|
|
|
|
|
|
end |