Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
test1
Browse files Browse the repository at this point in the history
  • Loading branch information
osoohynn committed Aug 25, 2024
1 parent 390e5af commit 0f61118
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package com.example.crescendoserver;

import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class Controller {

@GetMapping("/")
public String root() {
return "Hello World!";
// a
}
}

0 comments on commit 0f61118

Please sign in to comment.