diff options
author | Joris Guyonvarch | 2015-07-21 23:25:58 +0200 |
---|---|---|
committer | Joris Guyonvarch | 2015-07-21 23:25:58 +0200 |
commit | 2a53fe50c62d4b7aec0f422998c743f68aa523c1 (patch) | |
tree | ad32464c99668b477c4006146ec218c947bc9c8f /src/client/Reads.elm | |
parent | a271d6034bc4cc631a64476d25d21c83a701fa39 (diff) |
Adding the payment without reloading the page
Diffstat (limited to 'src/client/Reads.elm')
-rw-r--r-- | src/client/Reads.elm | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/client/Reads.elm b/src/client/Reads.elm new file mode 100644 index 0000000..7bc1bbc --- /dev/null +++ b/src/client/Reads.elm @@ -0,0 +1,10 @@ +module Reads + ( readInt + ) where + + +import Native.Reads +import Result exposing (Result) + +readInt : String -> Result String Int +readInt = Native.Reads.readInt |