()
| 354 | var _ MigrationSource = (*EmbedFileSystemMigrationSource)(nil) |
| 355 | |
| 356 | func (f EmbedFileSystemMigrationSource) FindMigrations() ([]*Migration, error) { |
| 357 | return findMigrations(http.FS(f.FileSystem), f.Root) |
| 358 | } |
| 359 | |
| 360 | // Avoids pulling in the packr library for everyone, mimicks the bits of |
| 361 | // packr.Box that we need. |
nothing calls this directly
no test coverage detected