This weekend's project is a URL redirecter/shortner. Written in golang, this cloud-native app will make it easy to redirect URLs. Let's dive inExploring what's involved with writing a URL shortner // manage starting of webserver func HandleWebserver() { ... router.HandleFunc(/{link:[a-zA-Z0-9]+}, APIshortLink) ... (#1) In