Skip to content
Snippets Groups Projects

Removed unnecessary files created at project initialization

Merged Torbjørn Antonsen requested to merge remove-unused-files into main
2 files
+ 0
41
Compare changes
  • Side-by-side
  • Inline
Files
2
package edu.ntnu.idatt2105.controller;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class HelloController {
@RequestMapping("/")
public ResponseEntity<String> helloWorld(){
return new ResponseEntity<>("Hello", HttpStatus.OK);
}
}
\ No newline at end of file
Loading