diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2021-03-31 02:18:13 +0200 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2021-03-31 02:18:13 +0200 |
commit | 9e5024fc3eed88ffc6d1ded1f7e2044fc621efe6 (patch) | |
tree | 7ac3e227dd376154c1af992b9d19936f958d347c /skate/cmd/skate-biblioref/main.go | |
parent | 5dde9bfd1f3c2e69d18b07ecc8893840479206f6 (diff) | |
download | refcat-9e5024fc3eed88ffc6d1ded1f7e2044fc621efe6.tar.gz refcat-9e5024fc3eed88ffc6d1ded1f7e2044fc621efe6.zip |
allow to pass in field delimiter
Diffstat (limited to 'skate/cmd/skate-biblioref/main.go')
-rw-r--r-- | skate/cmd/skate-biblioref/main.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/skate/cmd/skate-biblioref/main.go b/skate/cmd/skate-biblioref/main.go index 85b2a46..d16c99b 100644 --- a/skate/cmd/skate-biblioref/main.go +++ b/skate/cmd/skate-biblioref/main.go @@ -33,10 +33,10 @@ import ( "strings" "time" - "github.com/dgraph-io/ristretto" - jsoniter "github.com/json-iterator/go" "git.archive.org/martin/cgraph/skate" "git.archive.org/martin/cgraph/skate/parallel" + "github.com/dgraph-io/ristretto" + jsoniter "github.com/json-iterator/go" "github.com/sethgrid/pester" ) @@ -83,7 +83,7 @@ func main() { return nil, nil } br := skate.BiblioRef{ - UpdateTs: time.Now().Unix(), + IndexedTs: time.Now().Unix(), SourceReleaseIdent: source, TargetReleaseIdent: target, MatchStatus: matchStatus, |