Files
core/webapi/Download_test.go

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)
}