23 lines
		
	
	
		
			546 B
		
	
	
	
		
			Haskell
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			546 B
		
	
	
	
		
			Haskell
		
	
	
	
	
	
| {-# OPTIONS_GHC -Wno-missing-signatures #-}
 | |
| module Functions
 | |
|   ( isImageFilename
 | |
|   , convertedImageFilename
 | |
|   , listDirectory
 | |
|   , openImage
 | |
|   , convertImage
 | |
|   , saveFile
 | |
|   , runPandoc
 | |
|   ) where
 | |
| 
 | |
| import FunctionImplementations
 | |
| import ComputationM
 | |
| 
 | |
| isImageFilename = runFunction IsImageFilename
 | |
| convertedImageFilename = runFunction ConvertedImageFilename
 | |
| 
 | |
| listDirectory = runFunctionIO ListDirectory
 | |
| openImage = runFunctionIO OpenImage
 | |
| convertImage = runFunctionIO ConvertImage
 | |
| saveFile = runFunctionIO SaveFile
 | |
| runPandoc = runFunctionIO RunPandoc
 |