this is initially for TLS-enabled logging but would be useful for anything on a liminix box that wants to talk to a network service in a "zero trust" setup
10 lines
117 B
Fennel
10 lines
117 B
Fennel
(local { : view } (require :fennel))
|
|
(local ctx (require openssl.ssl.ctx))
|
|
|
|
(fn run []
|
|
(print "hey"))
|
|
|
|
|
|
|
|
{ : run }
|