1
0
mirror of https://github.com/fluencelabs/fluid synced 2025-05-02 02:02:13 +00:00

5 lines
120 B
TypeScript
Raw Normal View History

2019-08-14 16:02:02 +03:00
// main handler for an application
export function handler(input: string): string {
2019-08-14 16:04:48 +03:00
return "Hello, " + input + "!";
2019-08-14 16:02:02 +03:00
}