diff options
Diffstat (limited to 'testing/mozbase/mozserve/mozserve/__init__.py')
-rw-r--r-- | testing/mozbase/mozserve/mozserve/__init__.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/testing/mozbase/mozserve/mozserve/__init__.py b/testing/mozbase/mozserve/mozserve/__init__.py new file mode 100644 index 0000000000..2354857354 --- /dev/null +++ b/testing/mozbase/mozserve/mozserve/__init__.py @@ -0,0 +1,12 @@ +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this file, +# You can obtain one at http://mozilla.org/MPL/2.0/. + +""" +mozserve is a simple script that is used to launch test servers, and +is designed for use in mochitest and xpcshelltest. +""" + +from .servers import DoHServer, Http3Server + +__all__ = ["Http3Server", "DoHServer"] |