Spaces:
Sleeping
Sleeping
package ai.giskard.learnspringwebsockets; | |
import org.springframework.web.bind.annotation.GetMapping; | |
import org.springframework.web.bind.annotation.RestController; | |
public class IndexController { | |
public String index() { | |
return "Hello world!"; | |
} | |
public String test() { | |
return "test"; | |
} | |
} | |