-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconstants.py
More file actions
20 lines (19 loc) · 795 Bytes
/
constants.py
File metadata and controls
20 lines (19 loc) · 795 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#################################################################
# Author: Ismael Maurice #
# Language: Python #
# Projet: Github Clone #
# Version: V1 #
# File: constants.py #
#################################################################
# APPLICATION NAME
APP_NAME = "Github Clone"
# API URL TYPE
API_URL_TYPE = "API"
# BRANCH URL TYPE
BRANCH_URL_TYPE = "BRANCH"
# REPOSITORY CLONE URL TYPE
REPOSITORY_CLONE_URL_TYPE = "REPOSITORY_CLONE"
# REPOSITORY LIST URL TYPE
REPOSITORY_LIST_URL_TYPE = "REPOSITORY_LIST"
# BRANCH LIST URL TYPE
BRANCH_LIST_URL_TYPE = "BRANCH_LIST"