1.0.0 Alpha Release #59

Merged
netkas merged 213 commits from v1.0.0_alpha into master 2023-01-29 23:27:58 +00:00
Showing only changes of commit f4abc020ec - Show all commits

View file

@ -5,4 +5,30 @@
abstract class Runners abstract class Runners
{ {
const php = 'php'; 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
];
} }