Make these modules' names more like the heavily-used types they define (CliOpts, UIOpts, WebOpts). This is consistent with RawOptions and ReportOptions, and helps with code navigation.
		
			
				
	
	
		
			22 lines
		
	
	
		
			435 B
		
	
	
	
		
			Haskell
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			435 B
		
	
	
	
		
			Haskell
		
	
	
	
	
	
{-|
 | 
						|
Re-export the modules of the hledger-web program.
 | 
						|
-}
 | 
						|
 | 
						|
module Hledger.Web (
 | 
						|
                     module Hledger.Web.WebOptions,
 | 
						|
                     module Hledger.Web.Main,
 | 
						|
                     tests_Hledger_Web
 | 
						|
              )
 | 
						|
where
 | 
						|
import Test.HUnit
 | 
						|
 | 
						|
import Hledger.Web.WebOptions
 | 
						|
import Hledger.Web.Main
 | 
						|
 | 
						|
tests_Hledger_Web :: Test
 | 
						|
tests_Hledger_Web = TestList
 | 
						|
 [
 | 
						|
 --  tests_Hledger_Web_WebOptions
 | 
						|
 -- ,tests_Hledger_Web_Main
 | 
						|
 ]
 |