From 35813e292d30f76ac65b3881e75891dfbb41badc Mon Sep 17 00:00:00 2001 From: deathbybandaid Date: Wed, 9 Feb 2022 12:00:04 -0500 Subject: [PATCH] first push --- SpiceBot/SpiceBotCore/__init__.py | 0 SpiceBot/__init__.py | 13 +++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 SpiceBot/SpiceBotCore/__init__.py create mode 100644 SpiceBot/__init__.py diff --git a/SpiceBot/SpiceBotCore/__init__.py b/SpiceBot/SpiceBotCore/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/SpiceBot/__init__.py b/SpiceBot/__init__.py new file mode 100644 index 0000000..2f02d2b --- /dev/null +++ b/SpiceBot/__init__.py @@ -0,0 +1,13 @@ +# coding=utf8 +"""SpiceBotSERV +A Niche Wrapper around Sopel +""" +from __future__ import unicode_literals, absolute_import, division, print_function + +import os + +import pathlib + +SCRIPT_DIR = pathlib.Path(os.path.dirname(os.path.abspath(__file__))) + +print(SCRIPT_DIR)