From 9aa408ef8cf74c677a19b7d7e2b87f37c861430d Mon Sep 17 00:00:00 2001 From: KOSASIH Date: Fri, 10 May 2024 20:05:38 +0700 Subject: [PATCH] Create authentication.py --- api/authentication.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 api/authentication.py diff --git a/api/authentication.py b/api/authentication.py new file mode 100644 index 000000000..932d9c6be --- /dev/null +++ b/api/authentication.py @@ -0,0 +1,3 @@ +from flask_jwt_extended import JWTManager + +jwt_manager = JWTManager()