Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
evpix authored May 17, 2020
1 parent 39f2ae5 commit 38357e4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ Each function delivers the following variables
```url: POST http://localhost:3560/register?user=test&password=123```

```gdscript
func post_register(header_dict, body, params_dict, connection):
print(params) #output { "user":"test","password":123 }
func post_register(header_dict, body, params_dict, connection):
print(params) #output { "user":"test","password":123 }
```


Expand All @@ -99,8 +99,8 @@ Each function delivers the following variables
```url: GET http://localhost:3560/user/test?planet=moon```

```gdscript
func get_user_Name(header_dict, body, params_dict, connection):
print(params) #output {"name":"test","planet":moon}
func get_user_Name(header_dict, body, params_dict, connection):
print(params) #output {"name":"test","planet":moon}
```

#BUGS
Expand Down

0 comments on commit 38357e4

Please sign in to comment.