Skip to content

Commit

Permalink
Add Top-Level Exports: client, server, utils
Browse files Browse the repository at this point in the history
  • Loading branch information
ric-evans committed Sep 12, 2024
1 parent c683c33 commit b10a188
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -115,3 +115,6 @@ src/

# wipac-dev-py-setup-action
!dependencies*.log

.idea/

9 changes: 9 additions & 0 deletions rest_tools/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# version is a human-readable version number.

from . import client, server, utils

__all__ = [
"client",
"server",
"utils",
]


# version_info is a four-tuple for programmatic comparison. The first
# three numbers are the components of the version number. The fourth
# is zero for an official release, positive for a development branch,
Expand Down

0 comments on commit b10a188

Please sign in to comment.