package comment import "tercul/internal/domain" // Service is the application service for the comment aggregate. type Service struct { Commands *CommentCommands Queries *CommentQueries } // NewService creates a new comment Service. func NewService(repo domain.CommentRepository) *Service { return &Service{ Commands: NewCommentCommands(repo), Queries: NewCommentQueries(repo), } }