diff options
author | Frederick Muriuki Muriithi | 2023-02-02 11:35:51 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2023-02-02 12:03:51 +0300 |
commit | dfe5eb18e3ec8dc570d118bfe95c5d4dcb2c7575 (patch) | |
tree | b45da1e9eba405042ef47174215b827739f5a393 /gn3/auth/__init__.py | |
parent | 6fc120aca6062f96725adaece85a7b76000affda (diff) | |
download | genenetwork3-dfe5eb18e3ec8dc570d118bfe95c5d4dcb2c7575.tar.gz |
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.
Diffstat (limited to 'gn3/auth/__init__.py')
-rw-r--r-- | gn3/auth/__init__.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gn3/auth/__init__.py b/gn3/auth/__init__.py index ba10305..a28498d 100644 --- a/gn3/auth/__init__.py +++ b/gn3/auth/__init__.py @@ -2,6 +2,4 @@ from . import authorisation from . import authentication -## Setup the endpoints -from .authorisation.views import * -from .authentication.oauth2.views import * +from .views import oauth2 |