mirror of
https://github.com/wader/fq.git
synced 2024-12-23 05:13:30 +03:00
15 lines
152 B
Go
15 lines
152 B
Go
|
package crypto
|
||
|
|
||
|
import (
|
||
|
"embed"
|
||
|
|
||
|
"github.com/wader/fq/pkg/interp"
|
||
|
)
|
||
|
|
||
|
//go:embed pem.jq
|
||
|
var pemFS embed.FS
|
||
|
|
||
|
func init() {
|
||
|
interp.RegisterFS(pemFS)
|
||
|
}
|