1
0
mirror of https://github.com/danog/liquid.git synced 2025-01-22 20:01:12 +01:00
liquid/drops.go

7 lines
147 B
Go
Raw Normal View History

2017-07-03 12:00:43 -04:00
package liquid
// Drop indicates that the object will present to templates as its ToLiquid value.
type Drop interface {
ToLiquid() interface{}
}