Coverage for .tox/coverage/lib/python3.11/site-packages/wuttjamaican/cli/make_uuid.py: 100%
10 statements
« prev ^ index » next coverage.py v7.3.2, created at 2024-11-30 20:02 -0600
« prev ^ index » next coverage.py v7.3.2, created at 2024-11-30 20:02 -0600
1# -*- coding: utf-8; -*-
2################################################################################
3#
4# WuttJamaican -- Base package for Wutta Framework
5# Copyright © 2023-2024 Lance Edgar
6#
7# This file is part of Wutta Framework.
8#
9# Wutta Framework is free software: you can redistribute it and/or modify it
10# under the terms of the GNU General Public License as published by the Free
11# Software Foundation, either version 3 of the License, or (at your option) any
12# later version.
13#
14# Wutta Framework is distributed in the hope that it will be useful, but
15# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17# more details.
18#
19# You should have received a copy of the GNU General Public License along with
20# Wutta Framework. If not, see <http://www.gnu.org/licenses/>.
21#
22################################################################################
23"""
24See also: :ref:`wutta-make-uuid`
25"""
27import sys
29import typer
31from .base import wutta_typer
34@wutta_typer.command()
35def make_uuid(
36 ctx: typer.Context,
37):
38 """
39 Generate a new UUID
40 """
41 config = ctx.parent.wutta_config
42 app = config.get_app()
43 uuid = app.make_true_uuid()
44 sys.stdout.write(f"{uuid}\n")