You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
463 B
18 lines
463 B
<?php |
|
|
|
/* |
|
* @package OpenEMR |
|
* @link http://www.open-emr.org |
|
* @author Sherwin Gaddis <sherwingaddis@gmail.com> |
|
* @copyright Copyright (c) 2021 Sherwin Gaddis <sherwingaddis@gmail.com> |
|
* @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3 |
|
*/ |
|
|
|
use OpenEMR\Rx\Weno\Container; |
|
|
|
function start_weno() |
|
{ |
|
$container = new Container(); |
|
$logsync = $container->getLogproperties(); |
|
$logsync->logSync(); |
|
}
|
|
|