Build with latest yesod. Also reorganise to conform more closely with yesod's standard scaffold layout to reduce upgrade effort.
		
			
				
	
	
		
			12 lines
		
	
	
		
			352 B
		
	
	
	
		
			Haskell
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			352 B
		
	
	
	
		
			Haskell
		
	
	
	
	
	
import Prelude              (IO)
 | 
						|
-- import Yesod.Default.Config (fromArgs)
 | 
						|
-- import Yesod.Default.Main   (defaultMain)
 | 
						|
-- import Settings             (parseExtra)
 | 
						|
-- import Application          (makeApplication)
 | 
						|
 | 
						|
import qualified Hledger.Web.Main
 | 
						|
 | 
						|
main :: IO ()
 | 
						|
-- main = defaultMain (fromArgs parseExtra) makeApplication
 | 
						|
main = Hledger.Web.Main.main
 |