package store import "gorm.io/gorm" // Store is the central data access layer. type Store struct { DB *gorm.DB } // New creates a new Store. func New(db *gorm.DB) *Store { return &Store{DB: db} }