1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-07 02:52:50 -05:00

azure functions project

This commit is contained in:
Kyle Spearrin
2017-09-08 12:38:09 -04:00
parent 7cdba3e81a
commit 8218ab468d
11 changed files with 380 additions and 1 deletions

View File

@ -0,0 +1,17 @@
using System;
using Microsoft.Azure.WebJobs;
using Microsoft.Azure.WebJobs.Host;
namespace Bit.Function
{
public static class KeepAlive
{
[FunctionName("KeepAlive")]
public static void Run(
[TimerTrigger("0 */15 * * * *")]TimerInfo myTimer,
TraceWriter log)
{
log.Info($"C# Timer trigger function executed at: {DateTime.Now}");
}
}
}