-
Notifications
You must be signed in to change notification settings - Fork 0
/
__init__.py
22 lines (20 loc) · 899 Bytes
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# ----------------------------------------------------------------
# Author: WayneFerdon [email protected]
# Date: 2023-04-02 12:21:06
# LastEditors: WayneFerdon [email protected]
# LastEditTime: 2023-04-09 23:19:30
# FilePath: \FlowLauncher\Plugins\WoxBasePluginQuery\__init__.py
# ----------------------------------------------------------------
# Copyright (c) 2023 by Wayne Ferdon Studio. All rights reserved.
# Licensed to the .NET Foundation under one or more agreements.
# The .NET Foundation licenses this file to you under the MIT license.
# See the LICENSE file in the project root for more information.
# ----------------------------------------------------------------
import os
import sys
pluginDir = os.path.dirname(os.path.realpath(__file__))
sys.path.append(pluginDir)
from RegexList import *
from LauncherAPI import *
from QueryPlugin import *
from QueryDebug import *