~aleteoryx/tclircc

ref: 592f2b1342c0ea9a4af15accfe18f69e2f76b5ab tclircc/plugins.tcl -rw-r--r-- 276 bytes
592f2b13aleteoryx readme changes 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

    
  }
}