aboutsummaryrefslogtreecommitdiffstats
path: root/bug/operations/operation.go
diff options
context:
space:
mode:
Diffstat (limited to 'bug/operations/operation.go')
-rw-r--r--bug/operations/operation.go19
1 files changed, 0 insertions, 19 deletions
diff --git a/bug/operations/operation.go b/bug/operations/operation.go
deleted file mode 100644
index a9cf806f..00000000
--- a/bug/operations/operation.go
+++ /dev/null
@@ -1,19 +0,0 @@
-package operations
-
-import (
- "github.com/MichaelMure/git-bug/bug"
-)
-
-type OperationType int
-
-const (
- UNKNOW OperationType = iota
- CREATE
- SET_TITLE
- ADD_COMMENT
-)
-
-type Operation interface {
- OpType() OperationType
- Apply(snapshot bug.Snapshot) bug.Snapshot
-}