diff options
| author | Bobby <[email protected]> | 2022-07-20 10:50:33 +0530 |
|---|---|---|
| committer | Bobby <[email protected]> | 2022-07-20 10:50:33 +0530 |
| commit | 1869eaac8b4708620bf61a5d7dee6ccd73474309 (patch) | |
| tree | 244cdfa581b028c4fec4118c5e1a9cfb215dfde0 /users/models.py | |
| parent | 09b002e46b69b43ccd9fc1be29c8bf15f7c2e8be (diff) | |
| download | thatcomputerscientist-1869eaac8b4708620bf61a5d7dee6ccd73474309.tar.xz thatcomputerscientist-1869eaac8b4708620bf61a5d7dee6ccd73474309.zip | |
Add users app to control user actions: added login and logout
Diffstat (limited to 'users/models.py')
| -rw-r--r-- | users/models.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/users/models.py b/users/models.py new file mode 100644 index 00000000..71a83623 --- /dev/null +++ b/users/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. |
