From 32f64583152765fdb56a29e2f1b39ca858e73f92 Mon Sep 17 00:00:00 2001 From: elay Date: Mon, 10 Jun 2024 21:45:22 -0700 Subject: [PATCH] remove readme --- pcfuncs/ipban/readme.md | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 pcfuncs/ipban/readme.md diff --git a/pcfuncs/ipban/readme.md b/pcfuncs/ipban/readme.md deleted file mode 100644 index e8b7e887..00000000 --- a/pcfuncs/ipban/readme.md +++ /dev/null @@ -1,11 +0,0 @@ -# TimerTrigger - Python - -The `TimerTrigger` makes it incredibly easy to have your functions executed on a schedule. This sample demonstrates a simple use case of calling your function every 5 minutes. - -## How it works - -For a `TimerTrigger` to work, you provide a schedule in the form of a [cron expression](https://en.wikipedia.org/wiki/Cron#CRON_expression)(See the link for full details). A cron expression is a string with 6 separate expressions which represent a given schedule via patterns. The pattern we use to represent every 5 minutes is `0 */5 * * * *`. This, in plain text, means: "When seconds is equal to 0, minutes is divisible by 5, for any hour, day of the month, month, day of the week, or year". - -## Learn more - - Documentation