Skip to content

Commit 180268f

Browse files
committed
Moved entry point to api
1 parent b0d72fb commit 180268f

2 files changed

Lines changed: 11 additions & 11 deletions

File tree

odinweb/__init__.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1 @@
1-
"""
2-
Odin Web
3-
~~~~~~~~
4-
5-
Web APIs utilising Odin for encoding/decoding and validation.
6-
7-
"""
81
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
9-
10-
__authors__ = "Tim Savage"
11-
__author_email__ = "tim@savage.company"
12-
__copyright__ = "Copyright (C) 2016-2017 Tim Savage"

odinweb/api.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
"""
2+
Odin Web
3+
~~~~~~~~
4+
5+
Web APIs utilising Odin for encoding/decoding and validation.
6+
7+
"""
8+
__authors__ = "Tim Savage"
9+
__author_email__ = "tim@savage.company"
10+
__copyright__ = "Copyright (C) 2016-2017 Tim Savage"
11+
112
from .constants import * # noqa
213
from .containers import * # noqa
314
from .decorators import * # noqa

0 commit comments

Comments
 (0)