Created
December 6, 2020 18:48
-
-
Save sfmskywalker/336f83284673e0f71d2a3899b9ae61e7 to your computer and use it in GitHub Desktop.
Revisions
-
sfmskywalker created this gist
Dec 6, 2020 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ class MyJob : IWorkflow { public void Build(IWorkflowBuilder workflow) { workflow .Cron("* * * * * * *") .WriteLine(() => $"CRON event at {DateTime.Now}"); } }