1
0
mirror of https://github.com/astaxie/beego.git synced 2025-07-12 06:41:02 +00:00

use StopRun to terminate the execution

This commit is contained in:
astaxie
2013-12-16 23:22:15 +08:00
parent 436f9a7468
commit b9fdbdf7b5
2 changed files with 4 additions and 1 deletions

View File

@ -181,7 +181,7 @@ func (c *Controller) Abort(code string) {
}
func (c *Controller) StopRun() {
panic("")
panic("StopRun")
}
func (c *Controller) UrlFor(endpoint string, values ...string) string {