Skip to content

Commit

Permalink
WIP Add ExtraFiles module
Browse files Browse the repository at this point in the history
  • Loading branch information
jfmengels committed Mar 15, 2024
1 parent 0ed3ed9 commit fa36563
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions template/src/Elm/Review/ExtraFiles.elm
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
module Review.ExtraFiles exposing (ExtraFileRequest, exclude, excludeFolder, include)


type ExtraFileRequest
= Include String
| Exclude String
| ExcludeFolder String


include : String -> ExtraFileRequest
include =
Include


exclude : String -> ExtraFileRequest
exclude =
Exclude


excludeFolder : String -> ExtraFileRequest
excludeFolder =
ExcludeFolder

0 comments on commit fa36563

Please sign in to comment.