""" Build the static site """ import click from app.site.builder import build_site @click.command() @click.pass_context def cli(ctx): """Build the static site """ print('Building the site...') build_site()