func afterAction(context *controller.Context, args []string) { context.RespBody = misc.AppendBytes(context.RespBody, []byte("after "+args[0]+"\n")) context.TransData["after"] = "after" }
func regexAction(context *controller.Context, args []string) { context.RespBody = misc.AppendBytes(context.RespBody, []byte(" regex id = "+args[0]+" ")) }
func beforeAction(context *controller.Context, args []string) { context.RespBody = []byte("exact before") }
func exactAction(context *controller.Context, args []string) { context.RespBody = misc.AppendBytes(context.RespBody, []byte(" exact ")) }
func afterAction(context *controller.Context, args []string) { context.RespBody = misc.AppendBytes(context.RespBody, []byte("after\n")) }