FlowLauncher-OSRS-Wiki-Search/run.py
2024-07-04 23:17:56 +02:00

12 lines
No EOL
293 B
Python

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()