mirror of
https://github.com/Shopify/liquid.git
synced 2026-09-16 17:30:43 -07:00
17 lines
213 B
Ruby
17 lines
213 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Liquid
|
|
class SnippetDrop < Drop
|
|
attr_reader :body
|
|
|
|
def initialize(body)
|
|
super()
|
|
@body = body
|
|
end
|
|
|
|
def to_s
|
|
'SnippetDrop'
|
|
end
|
|
end
|
|
end
|