mirror of
https://github.com/cliffe/SecGen.git
synced 2026-02-21 11:18:06 +00:00
11 lines
172 B
Ruby
11 lines
172 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 |