Skip to content

Instantly share code, notes, and snippets.

@GrillPhil
Created May 31, 2018 19:39
Show Gist options
  • Save GrillPhil/3044cf4fec8f056bd961c4123cbfdd7a to your computer and use it in GitHub Desktop.
Save GrillPhil/3044cf4fec8f056bd961c4123cbfdd7a to your computer and use it in GitHub Desktop.
Step 1
using Microsoft.Azure.WebJobs;
using Microsoft.Azure.WebJobs.Host;
using Microsoft.WindowsAzure.Storage.Blob;
using System.IO;
namespace ServerlessMiteIntegrationDemo
{
public static class ProjectBudgetsFunction
{
[FunctionName("ProjectBudgets")]
public static void Run([TimerTrigger("0 0 * * * *", RunOnStartup = true)]TimerInfo myTimer,
[Blob("cache/projects.json", FileAccess.Write)] CloudBlockBlob output,
TraceWriter log,
ExecutionContext context)
{
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment