aboutsummaryrefslogtreecommitdiff
path: root/ch23/23_a_1/PodCabalMain.hs
diff options
context:
space:
mode:
Diffstat (limited to 'ch23/23_a_1/PodCabalMain.hs')
-rw-r--r--ch23/23_a_1/PodCabalMain.hs10
1 files changed, 10 insertions, 0 deletions
diff --git a/ch23/23_a_1/PodCabalMain.hs b/ch23/23_a_1/PodCabalMain.hs
new file mode 100644
index 0000000..3810cb3
--- /dev/null
+++ b/ch23/23_a_1/PodCabalMain.hs
@@ -0,0 +1,10 @@
+{-- snippet all --}
+module Main where
+
+import qualified PodMainGUI
+import Paths_pod(getDataFileName)
+
+main =
+ do gladefn <- getDataFileName "podresources.glade"
+ PodMainGUI.main gladefn
+{-- /snippet all --}