Skip to content

Commit

Permalink
test : check for ci/cd
Browse files Browse the repository at this point in the history
  • Loading branch information
zini9188 committed Oct 19, 2023
1 parent 2da18fa commit 4f96be3
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/main/java/com/tgd/trip/HelloWorld.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package com.tgd.trip;

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

@RestController
public class HelloWorld {

@GetMapping
public String hello(){
return "helloWorld";
}
}

0 comments on commit 4f96be3

Please sign in to comment.