package com.jhooq.Jhooqk8s.ws;

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

@RestController
public class HelloWorldMicroservice {

    @GetMapping("/hello")
    public String hello() {
        return "Hello - Foo Bar!";
    }
}
