# File lib/puppet/file_serving/mount/modules.rb, line 14
14:     def search(path, request)
15:         module_name, relative_path = path.split("/", 2)
16:         return nil unless mod = request.environment.module(module_name)
17: 
18:         return nil unless path = mod.file(relative_path)
19:         return [path]
20:     end