Gitiles
Code Review
Sign In
gerrit.avm99963.com
/
infinitegforums
/
7c941c70d0491a940dae98c663ba0fca41c1cea9
/
.
/
src
/
infrastructure
/
presentation
/
scripts
/
ScriptRunner.ts
blob: 15e70bb49b4bef2646b386ebeff5ad76972a5b5d [
file
] [
log
] [
blame
]
import
Script
from
'../../../common/architecture/scripts/Script'
;
export
default
class
ScriptRunner
{
constructor
(
private
scripts
:
Script
[])
{}
run
()
{
for
(
const
script of
this
.
scripts
)
{
script
.
execute
();
}
}
}