diff --git a/src/urls.py b/src/urls.py index afdb53e..8a17a9f 100644 --- a/src/urls.py +++ b/src/urls.py @@ -1,3 +1,3 @@ accounts_url: str = "/api/accounts/" -accounts_login_url: str = "login" -accounts_register_url: str = "register" \ No newline at end of file +accounts_login_url: str = accounts_url + "login" +accounts_register_url: str = accounts_url + "register" \ No newline at end of file