Files
core/webapi/Download_test.go
Akilan Selvacoumar 3a1eece580 Directory (#102)
* changes to explore to take parameter id in /explore

* route /expore/node added
2023-02-12 09:47:56 +00:00

14 lines
209 B
Go

package webapi
import (
"fmt"
"testing"
)
// Test function
func TestDecodeBlake3Hash(t *testing.T) {
hash, bool := DecodeBlake3Hash("")
fmt.Println(hash)
fmt.Println(bool)
}