mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-07 05:38:01 +00:00
9 lines
345 B
Text
9 lines
345 B
Text
platform "roc-lang/glue"
|
|
requires {} { make_glue : List Types -> Result (List File) Str }
|
|
exposes [Shape, File, Types, TypeId, Target]
|
|
packages {}
|
|
imports [Types.{ Types }, File.{ File }]
|
|
provides [make_glue_for_host]
|
|
|
|
make_glue_for_host : List Types -> Result (List File) Str
|
|
make_glue_for_host = \types -> make_glue(types)
|