From dfe5eb18e3ec8dc570d118bfe95c5d4dcb2c7575 Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Thu, 2 Feb 2023 11:35:51 +0300 Subject: auth: Reorganise modules/packages for easier dev and maintenance Split the views/routes into separate modules each dealing with a narrower scope of the application to aid in maintenance, and help with making the development easier. --- gn3/auth/authorisation/resources/views.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 gn3/auth/authorisation/resources/views.py (limited to 'gn3/auth/authorisation/resources/views.py') diff --git a/gn3/auth/authorisation/resources/views.py b/gn3/auth/authorisation/resources/views.py new file mode 100644 index 0000000..009cae6 --- /dev/null +++ b/gn3/auth/authorisation/resources/views.py @@ -0,0 +1,4 @@ +"""The views/routes for the resources package""" +from flask import Blueprint + +resources = Blueprint("resources", __name__) -- cgit v1.2.3