Created
February 26, 2015 11:42
-
-
Save picsoung/92ab865bba134c69bf49 to your computer and use it in GitHub Desktop.
Correction workshop le wagon
This file contains 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
resource :words do | |
get '/mots/:word' do | |
{word: params[:word], sentiment:"unknown"}.to_json | |
end | |
post ':word' do | |
{word: params[:word], result: "thinking"}.to_json | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment