GaloisInc / ec2-unikernel

Tool for uploading unikernels into EC2
BSD 3-Clause "New" or "Revised" License
77 stars 6 forks source link

Clean up the imports in Main.hs #3

Open acw opened 8 years ago

acw commented 8 years ago

The imports in Main.hs are kind of insanely long.

I did it this way, though, because it makes it very easy to find out where symbols come from. Another way to do it, which might actually be cleaner, would be to switch all my long import lists into qualified imports. That way you'd still know where everything came from, but without the exhaustive lists. The downside of this is that sometimes it looks ugly ...

This might be another nice intro project for someone, since it's fairly mechanical in nature.