fix(fn-run): propagar stdout/stderr de bash functions library-style #1

Open
dataforge wants to merge 537 commits from auto/0077-fn-run-bash-mudo into master
Showing only changes of commit aceb10b672 - Show all commits
+11
View File
@@ -57,3 +57,14 @@ func (db *DB) Drop() error {
db.Close()
return os.Remove(db.path)
}
// Conn returns the underlying *sql.DB for callers that need raw SQL access
// (e.g. registry_mcp for aggregations not covered by Search/Get helpers).
func (db *DB) Conn() *sql.DB {
return db.conn
}
// Path returns the filesystem path of the database file.
func (db *DB) Path() string {
return db.path
}