单体应用初始化的时候自动进入修改用户名密码界面

This commit is contained in:
GoEdgeLab
2024-01-29 18:57:33 +08:00
parent 71ea501650
commit 4f7e55a3cf
8 changed files with 251 additions and 0 deletions

View File

@@ -10,6 +10,7 @@ func init() {
Prefix("").
GetPost("/", new(IndexAction)).
GetPost("/index/otp", new(OtpAction)).
GetPost("/initPassword", new(InitPasswordAction)).
EndAll()
})
}