Skip to content
Permalink
master
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 22 lines (17 sloc) 523 Bytes
#!/usr/bin/env python
def run():
from lib import librarySetup
from lib import databaseSetup
from lib import shell
from lib import uptime
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()