Files
core/webapi/Download_test.go
Akilan Selvacoumar 9775525d35 gofmt peernet (#103)
2023-02-12 09:59:31 +00:00

14 lines
181 B
Go

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