mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-25 04:52:32 +00:00
9 lines
336 B
Text
9 lines
336 B
Text
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
|