This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{- app/Route/PageNotFound.elm (delegates actual view to shared logic in another module) -} | |
module Route.PageNotFound exposing (Model, Msg, RouteParams, route, Data, ActionData) | |
{-| | |
@docs Model, Msg, RouteParams, route, Data, ActionData | |
-} | |
import BackendTask |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module AddRoute exposing (run) | |
import BackendTask | |
import Cli.Option as Option | |
import Cli.OptionsParser as OptionsParser | |
import Cli.Program as Program | |
import Elm | |
import Elm.Annotation as Type | |
import Elm.Case | |
import Elm.Declare |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
description = "CLI tool for local development and testing of Serverless applications"; | |
inputs = { | |
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; | |
flake-parts.url = "github:hercules-ci/flake-parts"; | |
}; | |
outputs = inputs@{ flake-parts, nixpkgs, ... }: | |
flake-parts.lib.mkFlake { inherit inputs; } { |