summaryrefslogtreecommitdiff
path: root/app/controllers/app.go
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/app.go')
-rw-r--r--app/controllers/app.go20
1 files changed, 20 insertions, 0 deletions
diff --git a/app/controllers/app.go b/app/controllers/app.go
new file mode 100644
index 0000000..754deee
--- /dev/null
+++ b/app/controllers/app.go
@@ -0,0 +1,20 @@
+package controllers
+
+import "github.com/revel/revel"
+
+type App struct {
+ //*revel.Controller
+ GormController
+}
+
+func (c App) Index() revel.Result {
+ return c.Render()
+}
+
+func (c App) Register() revel.Result {
+ return c.Render()
+}
+
+func (c App) DoRegister() revel.Result {
+ return c.Render()
+}