Files
snippet-manager/snip.py
7000pctAUTO ab59bd0148
Some checks failed
CI / test (push) Has been cancelled
fix: resolve CI test failures - API compatibility fixes
2026-03-22 13:04:04 +00:00

13 lines
305 B
Python

#!/usr/bin/env python3
"""Snip - Local-First Code Snippet Manager
A CLI tool for managing code snippets with local-first architecture
using SQLite storage, FTS5 full-text search, optional encryption,
and peer-to-peer sync capabilities.
"""
from snip.cli import cli
if __name__ == "__main__":
cli()