Matt Good

How to create a generic data structure in React

December 28, 2021

|react
thumbnail

Hello other World

func checkLink(link string, c chan string) {
	_, err := http.Get(link)
	if err != nil {
	    fmt.Println("Test")
		c <- link
		return
	}
	c <- link
}