FlowLauncher-OSRS-Wiki-Search/run.py

12 lines
293 B
Python
Raw Permalink Normal View History

2024-07-05 22:15:09 +02:00
import sys
import os
plugindir = os.path.abspath(os.path.dirname(__file__))
sys.path.append(plugindir)
sys.path.append(os.path.join(plugindir, "lib"))
sys.path.append(os.path.join(plugindir, "plugin"))
from plugin.searchwiki import OSRSSearcher
if __name__ == "__main__":
OSRSSearcher()