package like import "tercul/internal/domain" // Service is the application service for the like aggregate. type Service struct { Commands *LikeCommands Queries *LikeQueries } // NewService creates a new like Service. func NewService(repo domain.LikeRepository) *Service { return &Service{ Commands: NewLikeCommands(repo), Queries: NewLikeQueries(repo), } }