Letβs make a simple todo app with Go
Generally Go is perfect for building micro services, but it doesnβt mean that trivial MVC app are not easy to build. Go has built-in support for parsing html template, though we are not going to focus on that. First of all letβs write our go code for serving a html page and save it in a directory. In our case letβs call the directory todoapp and create a home.tpl file inside it. Paste the html in home.tpl, it doing some http call to our backend application. ...