aboutsummaryrefslogtreecommitdiff
path: root/ch23/23_a_1/PodCabalMain.hs
blob: 3810cb36176897db857743522993ae98c3be512e (plain)
1
2
3
4
5
6
7
8
9
10
{-- snippet all --}
module Main where

import qualified PodMainGUI
import Paths_pod(getDataFileName)

main = 
    do gladefn <- getDataFileName "podresources.glade"
       PodMainGUI.main gladefn
{-- /snippet all --}