mirror of
https://github.com/danog/liquid.git
synced 2024-12-03 13:27:49 +01:00
7 lines
147 B
Go
7 lines
147 B
Go
|
package liquid
|
||
|
|
||
|
// Drop indicates that the object will present to templates as its ToLiquid value.
|
||
|
type Drop interface {
|
||
|
ToLiquid() interface{}
|
||
|
}
|