This repository has been archived on 2024-06-18. You can view files and clone it, but cannot push or open issues or pull requests.

17 lines
529 B
Java
Raw Normal View History

2022-08-06 19:09:20 -04:00
package com.wyattjmiller.home.recipefoliobackend.controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class RootController {
@GetMapping("/")
public String GetRootPage() {
StringBuilder sb = new StringBuilder();
sb.append("RecipeFolio Backend, a RESTful API server software\n");
sb.append("Designed and developed by Miller Web Solutions, Wyatt J. Miller \nCopyright 2022");
return sb.toString();
}
}