Hello World (Golang, Beego)
(Step 1) Initialize workspace
c:\Users\Ethanium\Workspace>go mod init github.com/rollyn
go: creating new go.mod: module github.com/rollyn
(Step 2) Create hello.go
package main
import (
"github.com/beego/beego/v2/server/web"
)
type MainControlle...
rollyn.hashnode.dev1 min read