Created
May 31, 2018 19:39
-
-
Save GrillPhil/3044cf4fec8f056bd961c4123cbfdd7a to your computer and use it in GitHub Desktop.
Step 1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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