Support only-new-issues (#19)

Fixes #16
This commit is contained in:
Denis Isaev
2020-05-22 10:36:12 +03:00
committed by GitHub
parent 64c208bfbc
commit 10cbc929b3
9 changed files with 62797 additions and 8056 deletions

View File

@ -10,6 +10,7 @@ import (
// Hash~
func Hash(data string) string {
retError()
retError2()
h := md5.New()
h.Write([]byte(data))
@ -19,3 +20,7 @@ func Hash(data string) string {
func retError() error {
return errors.New("err")
}
func retError2() error {
return errors.New("err2")
}