main
Raw Download raw file
 1package fetch
 2
 3import (
 4	"context"
 5	"mill/internal/content"
 6)
 7
 8type Source interface {
 9	Name() string
10	Fetch(ctx context.Context) ([]*content.Observation, error)
11}