# SPDX-License-Identifier: MPL-2.0
# justfile - Just recipes for this project
# See: https://github.com/hyperpolymath/mustfile

# Default recipe
default:
    @just --list

# Build the project
build:
    @echo "Build not configured yet"

# Run tests
test:
    @echo "Tests not configured yet"

# Format code
fmt:
    @echo "Formatting not configured yet"

# Lint code
lint:
    @echo "Linting not configured yet"

# Clean build artifacts
clean:
    @echo "Clean not configured yet"
