~aleteoryx/tclircc

ref: 9af66920a9b8e82c34a8301e4d134a3bbeb0eb41 tclircc/plugins.tcl -rw-r--r-- 276 bytes
9af66920aleteoryx core database initialization a month ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package require sha256

# plugin manifest format:
# tcl script that must return the following

namespace eval plugins {
  variable plugins

  proc load {dir} {
    set mf_fd [open "$dir[file separator]manifest.tcl"]
    set manifest [read $mf_fd]
    close $mf_fd

    
  }
}