This repository has been archived on 2022-06-22. You can view files and clone it, but cannot push or open issues or pull requests.
github-gitea-mirror/repoStared.py

16 lines
365 B
Python
Raw Normal View History

2020-10-13 05:07:50 +00:00
import sys
2020-10-13 05:23:34 +00:00
import os
2020-10-12 08:30:12 +00:00
2020-10-13 05:23:34 +00:00
THIS_FOLDER = os.path.dirname(os.path.abspath(__file__))
sys.path.insert(1, "{0}/src/".format(THIS_FOLDER))
2020-10-12 08:30:12 +00:00
2020-10-13 05:07:50 +00:00
from helper import log,getConfig
from repositoryStared import repositoryStared
2020-10-12 11:37:51 +00:00
2020-10-13 05:07:50 +00:00
config = getConfig()
2020-10-12 11:37:51 +00:00
2020-10-13 05:07:50 +00:00
if config['repositoryStared']:
log('Setting Up Mirror For Stared Github Repository')
repositoryStared()
log('Finished')