diff options
author | Wojtek Kosior <koszko@koszko.org> | 2022-02-12 11:31:36 +0100 |
---|---|---|
committer | Wojtek Kosior <koszko@koszko.org> | 2022-02-12 16:10:26 +0100 |
commit | 40c24168fcaf9251f56e8570538e9a7dd48795e9 (patch) | |
tree | 42e68ea29d5c809c4b5e37e2a7237917433d7303 /src/hydrilla/server/__main__.py | |
parent | ded47952fc7f3e4484c6ae4a559e514cb660f2bc (diff) | |
download | haketilo-hydrilla-40c24168fcaf9251f56e8570538e9a7dd48795e9.tar.gz haketilo-hydrilla-40c24168fcaf9251f56e8570538e9a7dd48795e9.zip |
remake internationalization, using Babel this time
Diffstat (limited to 'src/hydrilla/server/__main__.py')
-rw-r--r-- | src/hydrilla/server/__main__.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/hydrilla/server/__main__.py b/src/hydrilla/server/__main__.py new file mode 100644 index 0000000..037b388 --- /dev/null +++ b/src/hydrilla/server/__main__.py @@ -0,0 +1,9 @@ +# SPDX-License-Identifier: CC0-1.0 + +# Copyright (C) 2022 Wojtek Kosior <koszko@koszko.org> +# +# Available under the terms of Creative Commons Zero v1.0 Universal. + +from . import serve + +serve.start() |