9 lines
248 B
Text
9 lines
248 B
Text
import ballerina/http;
|
|
|
|
service / on new http:Listener(9090) {
|
|
|
|
// This function responds with `string` value `Hello, World!` to HTTP GET requests.
|
|
resource function get greeting() returns string {
|
|
return "Goodbye, World!";
|
|
}
|
|
}
|