Skip to content

Commit

Permalink
🔀 pull request #1 from FusionTech-2430/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
alejandronoss1017 authored Sep 18, 2024
2 parents ce01805 + c90f725 commit b410289
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,9 @@ build/

### VS Code ###
.vscode/

### Firebase ###
spring-firebase-key.json

### Enviroment variables ###
.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package co.allconnected.fussiontech.eventsservice.controllers;

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

@RestController
public class FooController {
@GetMapping("/foo")
public String fooBar() {
return "Foo Bar";
}
}

0 comments on commit b410289

Please sign in to comment.