forked from hummypkg/webif
18 lines
290 B
Plaintext
18 lines
290 B
Plaintext
|
|
||
|
if {![exists -proc require]} {
|
||
|
proc require {args} {
|
||
|
foreach file $args {
|
||
|
uplevel source "/mod/var/mongoose/lib/$file"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
proc header {} {
|
||
|
uplevel source /mod/var/mongoose/html/lib/header.jim
|
||
|
}
|
||
|
|
||
|
proc footer {} {
|
||
|
uplevel source /mod/var/mongoose/html/lib/footer.jim
|
||
|
}
|
||
|
}
|
||
|
|