()
| 28 | } |
| 29 | |
| 30 | func main() { |
| 31 | migrations, err := fetchAllUserMigrations() |
| 32 | if err != nil { |
| 33 | log.Fatalf("Error: %v", err) |
| 34 | } |
| 35 | |
| 36 | for i, m := range migrations { |
| 37 | fmt.Printf("%v. %v", i+1, m.GetID()) |
| 38 | } |
| 39 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…