Skip to content

Instantly share code, notes, and snippets.

@tsaeki
tsaeki / Functions.java
Last active August 4, 2019 04:14
Sample Azure Functions with Timer trigger and SendGrid output binding for Java
package com.functions;
import java.time.*;
import com.microsoft.azure.functions.annotation.*;
import com.microsoft.azure.functions.*;
/**
* Azure Functions with HTTP Trigger.
*/
public class Function {