package marketplace import "context" type Repository interface { // GetMarketplaceByID retrieves a marketplace by its ID. GetMarketplaceByID(ctx context.Context, id int) (*Marketplace, error) }