1
2
3
4
5
6
7
8
9
|
// tbd, a #tag-based dependency tool for low ceremony task tracking
// see README.md for usage tips
package main
import (
"bufio"
"bytes"
"fmt"
"io"
|
<
|
1
2
3
4
5
6
7
8
|
// tbd, a #tag-based dependency tool for low ceremony task tracking
package main
import (
"bufio"
"bytes"
"fmt"
"io"
|
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
}
fmt.Fprintln(os.Stderr, "Error reading input.", err.Error())
return 1
}
}
}
// The tags struct contains hash (#) and at (@) tags
type tags struct {
hash []string
}
// as per fmt.Stringer
func (t tags) String() string {
var output bytes.Buffer
|
|
|
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 (#) tags
type tags struct {
hash []string
}
// as per fmt.Stringer
func (t tags) String() string {
var output bytes.Buffer
|