summaryrefslogtreecommitdiff
path: root/system/admin/auth.go
diff options
context:
space:
mode:
authorSteve Manuel <nilslice@gmail.com>2016-09-22 17:47:14 -0700
committerSteve Manuel <nilslice@gmail.com>2016-09-22 17:47:14 -0700
commit27c175f6c626175598ee0a3d5c7b750a84d583e2 (patch)
tree563cd0451d81464afb1269d7f703ddb8e4d9d9f0 /system/admin/auth.go
parentf31c13d76e5de8ab0420ecaf0f570e52f6218066 (diff)
adding a generator for custom post content types, slug for url based on title, main file to manage commands
Diffstat (limited to 'system/admin/auth.go')
-rw-r--r--system/admin/auth.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/system/admin/auth.go b/system/admin/auth.go
new file mode 100644
index 0000000..153a31a
--- /dev/null
+++ b/system/admin/auth.go
@@ -0,0 +1,11 @@
+package admin
+
+// Session ...
+type Session struct {
+ User
+ token string
+}
+
+// User ...
+type User struct {
+}