class Tapioca::Loaders::Dsl

def load_custom_dsl_compilers

def load_custom_dsl_compilers
  @custom_compiler_paths = Dir.glob([
    "#{@tapioca_path}/generators/**/*.rb", # TODO: Here for backcompat, remove later
    "#{@tapioca_path}/compilers/**/*.rb",
  ])
  @custom_compiler_paths.each { |compiler| require File.expand_path(compiler) }
end