mirror of
https://github.com/dillonkearns/elm-pages-v3-beta.git
synced 2024-11-24 06:54:03 +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 =
|
|
[]
|