mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-21 07:51:55 +00:00
8 lines
141 B
Python
8 lines
141 B
Python
import os
|
|
import shutil
|
|
|
|
source_dir = os.getcwd()
|
|
target_dir = "{{ cookiecutter.__final_destination }}"
|
|
|
|
shutil.move(source_dir, target_dir)
|