forked from hummypkg/webif
10 lines
174 B
Plaintext
10 lines
174 B
Plaintext
|
|
||
|
proc eval_plugins {hook} {
|
||
|
foreach plugin [glob /mod/var/mongoose/plugin/*] {
|
||
|
if {[file isfile "$plugin/$hook.hook"]} {
|
||
|
uplevel source "$plugin/$hook.hook"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|