Skip to content
Permalink
97c80d97d8
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 20 lines (15 sloc) 474 Bytes
def run():
from lib import librarySetup
from lib import databaseSetup
from lib import shell
librarySetup.checkLibraries() #Check and install libraries
databaseSetup.main() #Create database
shell.permissions()
from lib import setup
#from lib import online
import os
if not os.path.isfile('.env'): #Initial setup
setup.environment()
setup.subdirectories()
os.system("python3 lib/bot.py") #Run main program
run()