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/gist.py
2020-10-13 10:53:34 +05:30

16 lines
340 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 getConfig,log
from gistsSource import gistsSource
config = getConfig()
if config['gistsSource']:
log('Setting Up Mirror For Source Github Gists')
gistsSource()
log('Finished')