Changed folder structure

This commit is contained in:
2023-09-19 01:26:07 +03:00
parent 0bbdfd4120
commit 4d3c3e70a1
3 changed files with 14 additions and 47 deletions

View File

@@ -9,5 +9,4 @@ public class ExpenseTrackerFafApplication {
public static void main(String[] args) {
SpringApplication.run(ExpenseTrackerFafApplication.class, args);
}
}

View File

@@ -0,0 +1,13 @@
package com.faf223.expensetrackerfaf.controllers;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
class GetHelloWorld {
@GetMapping("/")
public String helloWorld() {
return "Hello, World!";
}
}