diff options
author | Michael Muré <batolettre@gmail.com> | 2021-02-20 15:48:44 +0100 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2021-03-14 18:41:22 +0100 |
commit | 214abe4dea1984086e45d1399538fb12aa010642 (patch) | |
tree | 6536f3ff7304e6b6abdd88728b391b726a471906 /bug/op_edit_comment.go | |
parent | f1d4a19af81fcc05ae9d90e018ff141f6521335a (diff) | |
download | git-bug-214abe4dea1984086e45d1399538fb12aa010642.tar.gz |
WIP operation with files
Diffstat (limited to 'bug/op_edit_comment.go')
-rw-r--r-- | bug/op_edit_comment.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bug/op_edit_comment.go b/bug/op_edit_comment.go index 653ab71e..3e6634e4 100644 --- a/bug/op_edit_comment.go +++ b/bug/op_edit_comment.go @@ -7,6 +7,7 @@ import ( "github.com/pkg/errors" "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/timestamp" @@ -15,6 +16,7 @@ import ( ) var _ Operation = &EditCommentOperation{} +var _ dag.OperationWithFiles = &EditCommentOperation{} // EditCommentOperation will change a comment in the bug type EditCommentOperation struct { |