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