stephenneale / seng371-group16

Contains Group 16's work for SENG371 A02 - Group 16, Spring 2023
0 stars 1 forks source link

Add backend with "hello world" #21

Closed matt-lebl closed 1 year ago

matt-lebl commented 1 year ago

I added a barebones backend with Spring Boot. There is one endpoint:

Sending a GET request to /hello responds with

{
    "message": "Hello, world!"
}

Passing a name parameter like /hello/matt responds with:

{
    "message": "Hello, matt!"
}

Let me know if you have any questions!

Merging this PR closes #20