From 47a0a7f8c65296752e57a16250caab8252e2a5f7 Mon Sep 17 00:00:00 2001 From: James Lu Date: Wed, 20 Jul 2016 23:55:26 -0700 Subject: [PATCH] Make plugins/ and protocols/ namespaces --- .gitignore | 2 +- plugins/__init__.py | 1 + protocols/__init__.py | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 plugins/__init__.py create mode 100644 protocols/__init__.py diff --git a/.gitignore b/.gitignore index ad83af9..8a951d3 100644 --- a/.gitignore +++ b/.gitignore @@ -4,7 +4,7 @@ !.*.yml # Automatically generated by setup.py -__init__.py +/__init__.py env/ build/ diff --git a/plugins/__init__.py b/plugins/__init__.py new file mode 100644 index 0000000..0ed1fb8 --- /dev/null +++ b/plugins/__init__.py @@ -0,0 +1 @@ +# Stub so that pylinkirc.plugins is a module diff --git a/protocols/__init__.py b/protocols/__init__.py new file mode 100644 index 0000000..a25b70a --- /dev/null +++ b/protocols/__init__.py @@ -0,0 +1 @@ +# Stub so that pylinkirc.protocols is a module