added Handler/ProfitItems
This commit is contained in:
parent
a71c8f3b26
commit
7de15e9bac
@ -36,6 +36,7 @@ import Handler.Wallet
|
||||
import Handler.Settings
|
||||
import Handler.Update
|
||||
import Handler.Stock
|
||||
import Handler.ProfitItems
|
||||
|
||||
-- This line actually creates our YesodDispatch instance. It is the second half
|
||||
-- of the call to mkYesodData which occurs in Foundation.hs. Please see the
|
||||
|
6
Handler/ProfitItems.hs
Normal file
6
Handler/ProfitItems.hs
Normal file
@ -0,0 +1,6 @@
|
||||
module Handler.ProfitItems where
|
||||
|
||||
import Import
|
||||
|
||||
getProfitItemsR :: Handler Html
|
||||
getProfitItemsR = error "Not yet implemented: getProfitItemsR"
|
@ -11,3 +11,4 @@
|
||||
/settings SettingsR GET POST
|
||||
/update UpdateR GET
|
||||
/stock StockR GET
|
||||
/analysis/items ProfitItemsR GET
|
||||
|
@ -26,6 +26,7 @@ library
|
||||
Handler.Settings
|
||||
Handler.Update
|
||||
Handler.Stock
|
||||
Handler.ProfitItems
|
||||
|
||||
if flag(dev) || flag(library-only)
|
||||
cpp-options: -DDEVELOPMENT
|
||||
|
Loading…
Reference in New Issue
Block a user