# File lib/puppet/file_serving/mount/modules.rb, line 7
 7:     def find(path, request)
 8:         module_name, relative_path = path.split("/", 2)
 9:         return nil unless mod = request.environment.module(module_name)
10: 
11:         mod.file(relative_path)
12:     end