blob: b08d55bd65f3a1d9f7c78e9de64664a446bd690d (
plain)
1
2
3
4
5
6
7
8
|
module Main where
import qualified Properties
-- This will run all of the QC files for xmonad core. Currently, that's just
-- Properties. If any more get added, sequence the main actions together.
main = do
Properties.main
|