summaryrefslogtreecommitdiff
path: root/struct.go
diff options
context:
space:
mode:
Diffstat (limited to 'struct.go')
-rw-r--r--struct.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/struct.go b/struct.go
index b8ccf38..9ea6346 100644
--- a/struct.go
+++ b/struct.go
@@ -40,3 +40,15 @@ type VirtualAliase struct {
Source string
Destination string
}
+
+type Request struct {
+ Email string
+ ConfirmEmail string
+ Password string
+ ConfirmPassword string
+}
+
+type Flash struct {
+ Success []interface{}
+ Error []interface{}
+}