diff --git a/README.md b/README.md index 35c3c0f..f3abd3d 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ That is README.md file and this is required for project overview Make the changes for AI services. -Added a line +This is customer demo diff --git a/src/main/java/com/example/demo/HelloController.java b/src/main/java/com/example/demo/HelloController.java index 95b88a2..f338b01 100644 --- a/src/main/java/com/example/demo/HelloController.java +++ b/src/main/java/com/example/demo/HelloController.java @@ -9,7 +9,7 @@ public class HelloController { @RequestMapping("/") String hello() { System.out.println("This is logs"); - return "Hello Azure and Spring Boot! (Production) test"; + return "Hello Azure and Spring Boot! (Production) This is Demo"; } }