diff options
author | Kristofer Hallin <kristofer@sunet.se> | 2022-01-04 22:12:26 +0100 |
---|---|---|
committer | Kristofer Hallin <kristofer@sunet.se> | 2022-01-04 22:12:26 +0100 |
commit | 2ea8d3a44d89934f7b22ddb932c76322601028a5 (patch) | |
tree | 84d210f850ea745f787cff403fcc553767b5c38c /src/db/couch/__init__.py | |
parent | a3b5cde94981b9a98d367004b4c513c81e5870e4 (diff) |
Use FastAPI routers and split things to multiple files.
Diffstat (limited to 'src/db/couch/__init__.py')
-rw-r--r-- | src/db/couch/__init__.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/db/couch/__init__.py b/src/db/couch/__init__.py new file mode 100644 index 0000000..b099235 --- /dev/null +++ b/src/db/couch/__init__.py @@ -0,0 +1,11 @@ +# -*- coding: utf-8 -*- + +__author__ = "Andrey Antukh" +__license__ = "BSD" +__version__ = "1.14.1" +__maintainer__ = "Rinat Sabitov" +__email__ = "rinat.sabitov@gmail.com" +__status__ = "Development" + + +from db.couch.client import Server # noqa: F401 |