Functions
Adamite Functions can be used to add custom server side logic to your application that you can't accomplish through the base database access.
const { InvokableFunction } = require("@adamite/service-functions");
module.exports = {
helloWorld: new InvokableFunction(() => {
console.log("Hello World");
})
};Function Types
Last updated
Was this helpful?