Skip to content

Commit

Permalink
Add about command
Browse files Browse the repository at this point in the history
  • Loading branch information
tekktrik committed Feb 25, 2024
1 parent 87ef50a commit 2220bf3
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions circfirm/cli/about.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# SPDX-FileCopyrightText: 2024 Alec Delaney, for Adafruit Industries
#
# SPDX-License-Identifier: MIT

"""CLI functionality for the about subcommand.
Author(s): Alec Delaney
"""

import click


@click.command()
def cli() -> None:
"""Information about circfirm."""
click.echo("Written by Alec Delaney, licensed under MIT License.")

0 comments on commit 2220bf3

Please sign in to comment.