changes to explore to take parameter id in /explore

This commit is contained in:
2023-01-31 22:01:02 +00:00
parent 6989ef4a19
commit fc09dff2b1
3 changed files with 335 additions and 310 deletions

13
webapi/Download_test.go Normal file
View File

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