aboutsummaryrefslogtreecommitdiffstats
path: root/bug/op_add_comment.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2021-02-20 15:48:44 +0100
committerMichael Muré <batolettre@gmail.com>2021-03-14 18:41:22 +0100
commit214abe4dea1984086e45d1399538fb12aa010642 (patch)
tree6536f3ff7304e6b6abdd88728b391b726a471906 /bug/op_add_comment.go
parentf1d4a19af81fcc05ae9d90e018ff141f6521335a (diff)
downloadgit-bug-214abe4dea1984086e45d1399538fb12aa010642.tar.gz
WIP operation with files
Diffstat (limited to 'bug/op_add_comment.go')
-rw-r--r--bug/op_add_comment.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/bug/op_add_comment.go b/bug/op_add_comment.go
index 4cba200f..f835866b 100644
--- a/bug/op_add_comment.go
+++ b/bug/op_add_comment.go
@@ -5,6 +5,7 @@ import (
"fmt"
"github.com/MichaelMure/git-bug/entity"
+ "github.com/MichaelMure/git-bug/entity/dag"
"github.com/MichaelMure/git-bug/identity"
"github.com/MichaelMure/git-bug/repository"
"github.com/MichaelMure/git-bug/util/text"
@@ -12,6 +13,7 @@ import (
)
var _ Operation = &AddCommentOperation{}
+var _ dag.OperationWithFiles = &AddCommentOperation{}
// AddCommentOperation will add a new comment in the bug
type AddCommentOperation struct {