8 lines
82 B
Python
8 lines
82 B
Python
from pathlib import Path
|
|
|
|
GIT_DIR = ".ugit"
|
|
|
|
|
|
def init():
|
|
Path.mkdir(GIT_DIR)
|