mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-11 05:34:11 +03:00
dca347a807
This reverts commit 9e00527bc214ebbb13d9e05ff03ea24b1467e6dc.
10 lines
344 B
Plaintext
10 lines
344 B
Plaintext
platform "tui"
|
|
requires { Model } { main : { init : ({} -> Model), update : (Model, Str -> Model), view : (Model -> Str) } }
|
|
exposes []
|
|
packages {}
|
|
imports []
|
|
provides [ mainForHost ]
|
|
|
|
mainForHost : { init : ({} -> Model) as Init, update : (Model, Str -> Model) as Update, view : (Model -> Str) as View }
|
|
mainForHost = main
|