{- DisTract ------------------------------------------------------\ | | | Copyright (c) 2007, Matthew Sackman (matthew@wellquite.org) | | | | DisTract is freely distributable under the terms of a 3-Clause | | BSD-style license. For details, see the DisTract web site: | | http://distract.wellquite.org/ | | | \-----------------------------------------------------------------} module Main (main) where import DisTract.HTML.BugView import DisTract.IOUtils import DisTract.Config main :: IO () main = do { config <- buildConfig ; bugs <- loadAndUpdateAll config ; mapM_ (formatBug config) bugs }