github.com/diggerhq/digger/libs@v0.0.0-20240604170430-9d61cdf01cc5/comment_utils/reporting/core.go (about) 1 package reporting 2 3 type Reporter interface { 4 Report(report string, reportFormatting func(report string) string) (commentId string, commentUrl string, error error) 5 Flush() (string, string, error) 6 Suppress() error 7 SupportsMarkdown() bool 8 }