mirror of
https://github.com/varunsridharan/github-gitea-mirror.git
synced 2025-02-22 13:12:55 +08:00
15 lines
365 B
Python
15 lines
365 B
Python
import sys
|
|
import os
|
|
|
|
THIS_FOLDER = os.path.dirname(os.path.abspath(__file__))
|
|
sys.path.insert(1, "{0}/src/".format(THIS_FOLDER))
|
|
|
|
from helper import log,getConfig
|
|
from repositoryStared import repositoryStared
|
|
|
|
config = getConfig()
|
|
|
|
if config['repositoryStared']:
|
|
log('Setting Up Mirror For Stared Github Repository')
|
|
repositoryStared()
|
|
log('Finished')
|