(path string)
| 11 | ) |
| 12 | |
| 13 | func openSQLiteDialector(path string) (gorm.Dialector, error) { |
| 14 | return sqlite.Open(buildSQLiteDSN(path)), nil |
| 15 | } |
| 16 | |
| 17 | // buildSQLiteDSN augments a SQLite file path with connection pragmas that make |
| 18 | // the auth DB resilient on slow or contended storage. |
no test coverage detected