From d78f259fdf2ed6ef4c62f2cc03f6e36cb9c96c6a Mon Sep 17 00:00:00 2001 From: Sangseng Lee <39856742+epicsagas@users.noreply.github.com> Date: Fri, 29 Jul 2022 10:36:30 +0900 Subject: [PATCH] fix: change site url on default controller --- cmd/commands/new/new.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/commands/new/new.go b/cmd/commands/new/new.go index 9d7c69d..716f393 100644 --- a/cmd/commands/new/new.go +++ b/cmd/commands/new/new.go @@ -151,7 +151,7 @@ type MainController struct { } func (c *MainController) Get() { - c.Data["Website"] = "beego.me" + c.Data["Website"] = "beego.vip" c.Data["Email"] = "astaxie@gmail.com" c.TplName = "index.tpl" }