15 lines
179 B
Ruby
15 lines
179 B
Ruby
|
module Lab
|
||
|
module Controllers
|
||
|
module DynagenController
|
||
|
|
||
|
def self.running_list
|
||
|
raise "Unsupported"
|
||
|
end
|
||
|
|
||
|
def self.dir_list(basepath=nil)
|
||
|
raise "Unsupported"
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|