()
| 25 | } |
| 26 | |
| 27 | func (this *StaticController) APP() { |
| 28 | link := strings.TrimSpace(models.GetOptionValue("APP_PAGE", "")) |
| 29 | if link != "" { |
| 30 | this.Redirect(link, 302) |
| 31 | } |
| 32 | this.Abort("404") |
| 33 | } |
| 34 | |
| 35 | func (this *StaticController) Test() { |
| 36 | // fmt.Println(models.NewBook().Export2Markdown("4b98937398e612778711608a3d09a9c4")) |
nothing calls this directly
no test coverage detected