elm-pages-v3-beta/examples/base-path/app/Api.elm
2023-01-16 17:48:46 -08:00

16 lines
405 B
Elm

module Api exposing (routes)
import ApiRoute
import BackendTask exposing (BackendTask)
import FatalError exposing (FatalError)
import Html exposing (Html)
import Route exposing (Route)
routes :
BackendTask FatalError (List Route)
-> (Maybe { indent : Int, newLines : Bool } -> Html Never -> String)
-> List (ApiRoute.ApiRoute ApiRoute.Response)
routes getStaticRoutes htmlToString =
[]