You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

10 lines
223 B

#!/usr/bin/python
import juci_to_python_api as juci
import glob
def loadplugins():
plugin_files = glob.glob("../plugins/*.py")
for current_file in plugin_files:
juci.initPlugin(current_file)
loadplugins()