copy the other repo and make packages install.

This commit is contained in:
fiatjaf
2023-09-18 16:29:38 -03:00
commit 0b433cd95a
18 changed files with 2042 additions and 0 deletions

11
util.go Normal file
View File

@@ -0,0 +1,11 @@
package opentimestamps
import "encoding/hex"
func mustDecodeHex(in string) []byte {
out, err := hex.DecodeString(in)
if err != nil {
panic(err)
}
return out
}