From 2e680d94b67e5906a4dde7802bb0d6b0bd1db775 Mon Sep 17 00:00:00 2001 From: starnakin Date: Fri, 3 Nov 2023 21:50:23 +0100 Subject: [PATCH] update: urls var name --- src/urls.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/urls.py b/src/urls.py index ccc4b4d..379524a 100644 --- a/src/urls.py +++ b/src/urls.py @@ -1,3 +1,4 @@ -accounts_url: str = "api/accounts/" -accounts_login_url: str = accounts_url + "login" -accounts_register_url: str = accounts_url + "register" \ No newline at end of file +accounts: str = "api/accounts/" +accounts_login: str = accounts + "login" +accounts_delete: str = accounts + "delete" +accounts_register: str = accounts + "register" \ No newline at end of file