add(taskwarrior): merge of server side changes for milestones

This commit is contained in:
2023-10-23 14:34:10 +02:00
parent 469cf102ea
commit d2aeb7ffe4
3 changed files with 46 additions and 18 deletions

11
internal/diff/diff.go Normal file
View File

@@ -0,0 +1,11 @@
package diff
import "fmt"
func Prompt(value, theirs, mine string) string {
// TODO: create tmp file with the corresponding contents
// open tmp file using the $EDITOR environment variable
// parse and return output of tmp file after $EDITOR execution has been completed
fmt.Printf("\tPrompting for value: '%s'\n", value)
return value
}