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.
		
			
				
	
	
		
			24 lines
		
	
	
		
			491 B
		
	
	
	
		
			Haskell
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			491 B
		
	
	
	
		
			Haskell
		
	
	
	
	
	
| {-|
 | |
| Re-export the modules of the hledger-ui program.
 | |
| -}
 | |
| 
 | |
| module Hledger.UI (
 | |
|                      module Hledger.UI.Main,
 | |
|                      module Hledger.UI.UIOptions,
 | |
|                      module Hledger.UI.Theme,
 | |
|                      tests_Hledger_UI
 | |
|               )
 | |
| where
 | |
| import Test.HUnit
 | |
| 
 | |
| import Hledger.UI.Main
 | |
| import Hledger.UI.UIOptions
 | |
| import Hledger.UI.Theme
 | |
| 
 | |
| tests_Hledger_UI :: Test
 | |
| tests_Hledger_UI = TestList
 | |
|  [
 | |
|  --  tests_Hledger_UI_Main
 | |
|  --  tests_Hledger_UI_UIOptions
 | |
|  ]
 |