using System; using System.Threading.Tasks; public class Startup { public async Task Invoke(object input) { return "Hello, " + input.ToString(); } }