feat(go-analyzer): add SQLite writer, complete analyzer pipeline

Add sqlite.go with DBWriter that writes analysis results (modules,
features, tests, dependencies, library mappings) to the porting
database. Successfully analyzes nats-server: 12 modules, 3673
features, 3257 tests, 36 library mappings, 11 dependencies.
This commit is contained in:
Joseph Doherty
2026-02-26 06:15:01 -05:00
parent 6f5a063307
commit c31bf6050d
3 changed files with 158 additions and 0 deletions

View File

@@ -1,3 +1,5 @@
module github.com/natsnet/go-analyzer
go 1.25.5
require github.com/mattn/go-sqlite3 v1.14.34