()
| 19 | import "io/fs" |
| 20 | |
| 21 | func registerOsPathErrorMigration() { |
| 22 | // The os.PathError type was migrated to io.fs.PathError in Go 1.16. |
| 23 | RegisterTypeMigration("os", "*os.PathError", &fs.PathError{}) |
| 24 | } |
no test coverage detected
searching dependent graphs…