a38ac74b86
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
13 lines
190 B
Go
13 lines
190 B
Go
package core
|
|
|
|
import (
|
|
"database/sql"
|
|
)
|
|
|
|
// TestDB encapsula una base de datos SQLite de test con su path y cleanup.
|
|
type TestDB struct {
|
|
DB *sql.DB
|
|
Path string
|
|
Cleanup func()
|
|
}
|