jacobchrismarsh/chess_senior_project

Create endpoint for making move on game

Closed this issue · 1 comments

I'm gonna work under the assumption that the JSON gaston sent to me will be structured something like this:

{
    "from": <int>,
    "to": <int>
}

And I will return a response that looks like this:

{
   "success": <boolean>
}

@gaganza What do you think of this?