blob: d8cb34f77e9986d9c09a18938e526d5866940903 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// skate-bref-unmatched takes a bref TSV sorted by source_release_ident and a
// refs file sorted by release_ident and exports a bref file that will include
// unmatched references as well.
package main
import "log"
func main() {
log.Println("skate-bref-unmatched")
}
|