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

META-INF.dirigible.test-project.openapi.api.mjs Maven / Gradle / Ivy

There is a newer version: 10.6.37
Show newest version
import { rs } from 'sdk/http';

rs.service()
    .resource("/hello-world")
    .get(function (_ctx, _request, _response) {
        _response.setContentType('application/json');
        _response.println(JSON.stringify({
            message: 'Hello World'
        }));
    })
    .produces(['application/json'])
    .execute();




© 2015 - 2025 Weber Informatics LLC | Privacy Policy