Skip to content
Snippets Groups Projects

Add basic Python Click skeleton.

Merged Birin Sanchez requested to merge birin.sanchez/project:3_basic_pipenv_workflow into master
3 files
+ 30
4
Compare changes
  • Side-by-side
  • Inline
Files
3
scripts/bosun.py 0 → 100644
+ 17
0
import click
@click.group()
def cli():
"""Bosun is a GitLab bolt-on for Liberty-style project management."""
@cli.group()
def greet():
pass
@greet.command(name="world")
def world_greet():
"""Shows 'Hellow world!' message."""
print("Hellow world!")
Loading