Initial Commit to Add RestAPI Server to IEC
[iec.git] / src / foundation / api / apiserver / app / routes / routes.go
diff --git a/src/foundation/api/apiserver/app/routes/routes.go b/src/foundation/api/apiserver/app/routes/routes.go
new file mode 100644 (file)
index 0000000..fcac773
--- /dev/null
@@ -0,0 +1,119 @@
+// GENERATED CODE - DO NOT EDIT
+// This file provides a way of creating URL's based on all the actions
+// found in all the controllers.
+package routes
+
+import "github.com/revel/revel"
+
+
+type tApp struct {}
+var App tApp
+
+
+func (_ tApp) Index(
+               ) string {
+       args := make(map[string]string)
+       
+       return revel.MainRouter.Reverse("App.Index", args).URL
+}
+
+func (_ tApp) GetStatus(
+               ) string {
+       args := make(map[string]string)
+       
+       return revel.MainRouter.Reverse("App.GetStatus", args).URL
+}
+
+
+type tStatic struct {}
+var Static tStatic
+
+
+func (_ tStatic) Serve(
+               prefix string,
+               filepath string,
+               ) string {
+       args := make(map[string]string)
+       
+       revel.Unbind(args, "prefix", prefix)
+       revel.Unbind(args, "filepath", filepath)
+       return revel.MainRouter.Reverse("Static.Serve", args).URL
+}
+
+func (_ tStatic) ServeDir(
+               prefix string,
+               filepath string,
+               ) string {
+       args := make(map[string]string)
+       
+       revel.Unbind(args, "prefix", prefix)
+       revel.Unbind(args, "filepath", filepath)
+       return revel.MainRouter.Reverse("Static.ServeDir", args).URL
+}
+
+func (_ tStatic) ServeModule(
+               moduleName string,
+               prefix string,
+               filepath string,
+               ) string {
+       args := make(map[string]string)
+       
+       revel.Unbind(args, "moduleName", moduleName)
+       revel.Unbind(args, "prefix", prefix)
+       revel.Unbind(args, "filepath", filepath)
+       return revel.MainRouter.Reverse("Static.ServeModule", args).URL
+}
+
+func (_ tStatic) ServeModuleDir(
+               moduleName string,
+               prefix string,
+               filepath string,
+               ) string {
+       args := make(map[string]string)
+       
+       revel.Unbind(args, "moduleName", moduleName)
+       revel.Unbind(args, "prefix", prefix)
+       revel.Unbind(args, "filepath", filepath)
+       return revel.MainRouter.Reverse("Static.ServeModuleDir", args).URL
+}
+
+
+type tTestRunner struct {}
+var TestRunner tTestRunner
+
+
+func (_ tTestRunner) Index(
+               ) string {
+       args := make(map[string]string)
+       
+       return revel.MainRouter.Reverse("TestRunner.Index", args).URL
+}
+
+func (_ tTestRunner) Suite(
+               suite string,
+               ) string {
+       args := make(map[string]string)
+       
+       revel.Unbind(args, "suite", suite)
+       return revel.MainRouter.Reverse("TestRunner.Suite", args).URL
+}
+
+func (_ tTestRunner) Run(
+               suite string,
+               test string,
+               ) string {
+       args := make(map[string]string)
+       
+       revel.Unbind(args, "suite", suite)
+       revel.Unbind(args, "test", test)
+       return revel.MainRouter.Reverse("TestRunner.Run", args).URL
+}
+
+func (_ tTestRunner) List(
+               ) string {
+       args := make(map[string]string)
+       
+       return revel.MainRouter.Reverse("TestRunner.List", args).URL
+}
+
+