mod baz 'baz/justfile'

# Lint the code
lint:
    echo "Linting code"

# Format the code
format:
    echo "Formatting code"
