mirror of
https://github.com/Shopify/liquid.git
synced 2026-09-12 23:40:45 -07:00
10 lines
142 B
Ruby
10 lines
142 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Liquid
|
|
class TemplateFactory
|
|
def for(_template_name)
|
|
Liquid::Template.new
|
|
end
|
|
end
|
|
end
|