| 17 | ) |
| 18 | |
| 19 | type sqliteModel struct { |
| 20 | db *sql.DB |
| 21 | mu sync.RWMutex |
| 22 | schemas map[string]*model.Schema |
| 23 | types map[reflect.Type]*model.Schema |
| 24 | } |
| 25 | |
| 26 | // New creates a new SQLite model. DSN is the file path (e.g., "data.db" or ":memory:"). |
| 27 | func New(dsn string) model.Model { |
nothing calls this directly
no outgoing calls
no test coverage detected