diff --git a/src/main/java/com/example/demo/DemoApplication.java b/src/main/java/com/example/demo/DemoApplication.java deleted file mode 100644 index a3127b44f1edda23e22bec85ff70e3064b3f378e..0000000000000000000000000000000000000000 --- a/src/main/java/com/example/demo/DemoApplication.java +++ /dev/null @@ -1,19 +0,0 @@ -package com.example.demo; - -import org.springframework.boot.*; -import org.springframework.boot.autoconfigure.*; -import org.springframework.web.bind.annotation.*; - -@SpringBootApplication -@RestController -public class DemoApplication { - - @GetMapping("/") - String home() { - return "Spring is here!"; - } - - public static void main(String[] args) { - SpringApplication.run(DemoApplication.class, args); - } -} \ No newline at end of file