package store // Work represents a work to be processed type Work struct { ID uint Body string } // PoeticMetrics represents metrics from poetic analysis type PoeticMetrics struct { RhymeScheme string MeterType string StanzaCount int LineCount int Structure string }