diff options
author | Pratyush Desai | 2021-12-24 20:44:01 +0530 |
---|---|---|
committer | Pratyush Desai | 2021-12-24 20:44:01 +0530 |
commit | 3d69b2906702025ef40bd6037279a91f971255d4 (patch) | |
tree | f6cc465c3a21637fbec1b5b1fdb5808437774d1d /api/api/blogs/apps.py | |
parent | 5564ffb20798d45bf87910feea39bf02b0d2dee4 (diff) | |
download | website-3d69b2906702025ef40bd6037279a91f971255d4.tar.gz website-3d69b2906702025ef40bd6037279a91f971255d4.tar.bz2 website-3d69b2906702025ef40bd6037279a91f971255d4.zip |
add apps, basic routing, req.txt
Diffstat (limited to 'api/api/blogs/apps.py')
-rw-r--r-- | api/api/blogs/apps.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/api/api/blogs/apps.py b/api/api/blogs/apps.py new file mode 100644 index 0000000..03962d1 --- /dev/null +++ b/api/api/blogs/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class BlogsConfig(AppConfig): + default_auto_field = 'django.db.models.BigAutoField' + name = 'blogs' |