wisski-cloud-distillery/internal/wisski/liquid/snapshots.go
2022-11-16 13:07:14 +01:00

10 lines
347 B
Go

package liquid
import "github.com/FAU-CDI/wisski-distillery/internal/models"
// Snapshots returns the list of snapshots of this WissKI
// NOTE(twiesing): Not entirely sure where this should go.
// It's not that this is
func (liquid *Liquid) Snapshots() (snapshots []models.Export, err error) {
return liquid.Malt.ExporterLog.For(liquid.Slug)
}