1 // GENERATED CODE - DO NOT EDIT
2 // This file provides a way of creating URL's based on all the actions
3 // found in all the controllers.
6 import "github.com/revel/revel"
15 args := make(map[string]string)
17 return revel.MainRouter.Reverse("App.Index", args).URL
20 func (_ tApp) GetStatus(
22 args := make(map[string]string)
24 return revel.MainRouter.Reverse("App.GetStatus", args).URL
28 type tStatic struct {}
32 func (_ tStatic) Serve(
36 args := make(map[string]string)
38 revel.Unbind(args, "prefix", prefix)
39 revel.Unbind(args, "filepath", filepath)
40 return revel.MainRouter.Reverse("Static.Serve", args).URL
43 func (_ tStatic) ServeDir(
47 args := make(map[string]string)
49 revel.Unbind(args, "prefix", prefix)
50 revel.Unbind(args, "filepath", filepath)
51 return revel.MainRouter.Reverse("Static.ServeDir", args).URL
54 func (_ tStatic) ServeModule(
59 args := make(map[string]string)
61 revel.Unbind(args, "moduleName", moduleName)
62 revel.Unbind(args, "prefix", prefix)
63 revel.Unbind(args, "filepath", filepath)
64 return revel.MainRouter.Reverse("Static.ServeModule", args).URL
67 func (_ tStatic) ServeModuleDir(
72 args := make(map[string]string)
74 revel.Unbind(args, "moduleName", moduleName)
75 revel.Unbind(args, "prefix", prefix)
76 revel.Unbind(args, "filepath", filepath)
77 return revel.MainRouter.Reverse("Static.ServeModuleDir", args).URL
81 type tTestRunner struct {}
82 var TestRunner tTestRunner
85 func (_ tTestRunner) Index(
87 args := make(map[string]string)
89 return revel.MainRouter.Reverse("TestRunner.Index", args).URL
92 func (_ tTestRunner) Suite(
95 args := make(map[string]string)
97 revel.Unbind(args, "suite", suite)
98 return revel.MainRouter.Reverse("TestRunner.Suite", args).URL
101 func (_ tTestRunner) Run(
105 args := make(map[string]string)
107 revel.Unbind(args, "suite", suite)
108 revel.Unbind(args, "test", test)
109 return revel.MainRouter.Reverse("TestRunner.Run", args).URL
112 func (_ tTestRunner) List(
114 args := make(map[string]string)
116 return revel.MainRouter.Reverse("TestRunner.List", args).URL