Skip to content

Commit

Permalink
Merge pull request #51 from imclerran/update-kf-stub
Browse files Browse the repository at this point in the history
Remove underscores from kingfisher stub function args
  • Loading branch information
imclerran authored Jun 22, 2024
2 parents 48c20be + eaab0d3 commit 9d91a95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions repository/app-stubs/kingfisher.roc
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ encodeModel : Model -> List U8
encodeModel = \model -> crash "TODO: Implement encodeModel"

handleReadRequest : Request, Model -> Response
handleReadRequest = \_request, model -> crash "TODO: Implement handleReadRequest"
handleReadRequest = \request, model -> crash "TODO: Implement handleReadRequest"

handleWriteRequest : Request, Model -> (Response, Model)
handleWriteRequest = \request, _model -> crash "TODO: Implement handleWriteRequest"
handleWriteRequest = \request, model -> crash "TODO: Implement handleWriteRequest"

0 comments on commit 9d91a95

Please sign in to comment.