lean-console/src/Lean.php

13 lines
232 B
PHP

<?php
namespace Lean\Console;
use Psr\Container\ContainerInterface;
abstract class Lean
{
public static function definitions() : array
{
return require(dirname(__DIR__) . "/meta/definitions/software.php");
}
}