/** * Package module for the Cron framework * * Note: The cronexp package was copied from Maxim's original repository, with * some slight modifications to fit this project. * * Copyright: * Copyright (c) 2018, Maxim Tyapkin. * Authors: * Maxim Tyapkin * License: * This software is licensed under the terms of the BSD 3-clause license. * The full terms of the license can be found in the LICENSE.md file. */ module scheduled.cronexp; public { import scheduled.cronexp.cronexp : CronExpr, CronException; import std.datetime : DateTime; import std.typecons : Nullable; }