All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dev.logchange.hofund.TestController Maven / Gradle / Ivy

package dev.logchange.hofund;

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

@RestController
@RequiredArgsConstructor
public class TestController {

//    private final TestRepository testRepository;

    @GetMapping("/test")
    public String test() {
        return "test";
    }

//    @GetMapping("/testEntity")
//    public Iterable testEntity() {
//        return testRepository.findAll();
//    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy