From f26e2113f0d6c329e8a80d5f1101941e511fd339 Mon Sep 17 00:00:00 2001 From: brb Date: Wed, 5 Jul 2023 20:22:25 +0200 Subject: [PATCH] added function --- utils.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/utils.py b/utils.py index c00640f..8b04226 100644 --- a/utils.py +++ b/utils.py @@ -1,5 +1,4 @@ +from pydantic import AnyHttpUrl - -def handle_request(request: dict) -> None: - print(request) - return \ No newline at end of file +def clone_repository(repo_url: AnyHttpUrl): + print(f'cloning into {repo_url}') \ No newline at end of file