8 lines
232 B
Python
8 lines
232 B
Python
from config import REPO_FORMATS
|
|
from .repo_name import repo_name
|
|
|
|
repo_format = REPO_FORMATS[repo_name()]
|
|
branch_types = repo_format['types']
|
|
branch_format = repo_format['branch_format']
|
|
commit_format = repo_format['commit_format']
|