mirror of
https://github.com/dillonkearns/elm-pages-v3-beta.git
synced 2025-01-06 14:26:35 +03:00
15 lines
308 B
Elm
15 lines
308 B
Elm
|
module Api exposing (routes)
|
||
|
|
||
|
import ApiRoute
|
||
|
import DataSource exposing (DataSource)
|
||
|
import Html exposing (Html)
|
||
|
import Route exposing (Route)
|
||
|
|
||
|
|
||
|
routes :
|
||
|
DataSource (List Route)
|
||
|
-> (Html Never -> String)
|
||
|
-> List (ApiRoute.ApiRoute ApiRoute.Response)
|
||
|
routes getStaticRoutes htmlToString =
|
||
|
[]
|