// main handler for an application
export function handler(input: string): string {
return "Hello, " + input + "!";
}