diff options
author | Steve Manuel <nilslice@gmail.com> | 2016-09-22 17:47:14 -0700 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2016-09-22 17:47:14 -0700 |
commit | 27c175f6c626175598ee0a3d5c7b750a84d583e2 (patch) | |
tree | 563cd0451d81464afb1269d7f703ddb8e4d9d9f0 /system/admin/auth.go | |
parent | f31c13d76e5de8ab0420ecaf0f570e52f6218066 (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.go | 11 |
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 { +} |