Main idea was to add secrets vault. However, ended up with quite a bit of refactoring and changes

This commit is contained in:
Alan Bridgeman 2025-02-12 13:04:52 -06:00
parent b7f67bec68
commit bb94a44877
9 changed files with 946 additions and 185 deletions

View file

@ -1,7 +1,7 @@
from .Template import Template
class OAuth (Template):
def __init__(self, base_app_url: str, app_abbreviation: str, app_name: str, service_name: str, dev_port: str, client_id: str, client_secret: str):
def __init__(self, base_app_url: str, app_abbreviation: str, app_name: str, service_name: str, dev_port: str):
"""A class for creating a/some template(s) related to OAuth implementation."""
self.base_app_url = base_app_url