Added more Runners to \ncc\Abstracts > Runners

https://git.n64.cc/nosial/ncc/-/issues/32
This commit is contained in:
Netkas 2022-12-07 20:59:34 -05:00
parent 2842e63637
commit f4abc020ec

View file

@ -5,4 +5,30 @@
abstract class Runners
{
const php = 'php';
const bash = 'bash';
const sh = 'sh';
const python = 'python';
const python3 = 'python3';
const python2 = 'python2';
const perl = 'perl';
const lua = 'lua';
const All = [
self::php,
self::bash,
self::sh,
self::python,
self::python3,
self::python2,
self::perl,
self::lua
];
}