Create helpers.php

This commit is contained in:
Tony Roy 2021-03-10 17:19:23 -04:00 committed by GitHub
commit 655f8a4bdf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

10
src/helpers.php Normal file
View file

@ -0,0 +1,10 @@
<?php
use wickedsoft\NetBox\NetBox;
if (!function_exists('netbox')) {
function netbox()
{
return app(NetBox::class);
}
}