chore: inicializar modulo Go y gitignore

Inicializa go mod con nombre fn-registry.
Configura .gitignore para ignorar registry.db (indice regenerable),
binario fn, artefactos de compilacion y archivos de IDE/OS.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-28 01:59:11 +01:00
commit 2a55cd99dc
2 changed files with 26 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
# SQLite index (regenerable con fn index)
registry.db
registry.db-journal
registry.db-wal
# Binario CLI
fn
# Go
*.exe
*.test
*.out
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db