Diff

Differences From Artifact [bf4f228fed]:

To Artifact [2085cbcbc6]:


1
2
3
4
5
6
7
8
9
1

2
3
4
5
6
7
8

-







// tbd, a #tag-based dependency tool for low ceremony task tracking
// see README.md for usage tips
package main

import (
	"bufio"
	"bytes"
	"fmt"
	"io"
80
81
82
83
84
85
86
87

88
89
90
91
92
93
94
79
80
81
82
83
84
85

86
87
88
89
90
91
92
93







-
+







			}
			fmt.Fprintln(os.Stderr, "Error reading input.", err.Error())
			return 1
		}
	}
}

// The tags struct contains hash (#) and at (@) tags
// The tags struct contains hash (#) tags
type tags struct {
	hash []string
}

// as per fmt.Stringer
func (t tags) String() string {
	var output bytes.Buffer