10 lines
230 B
Standard ML
10 lines
230 B
Standard ML
structure AppUpdate =
|
|
struct
|
|
open AppType
|
|
|
|
fun update (model: app_type, inputMsg) =
|
|
case #mode model of
|
|
NORMAL_MODE => NormalMode.update (model, inputMsg)
|
|
| BROWSE_MODE => BrowseMode.update (model, inputMsg)
|
|
end
|