initial commit

This commit is contained in:
i2p
2026-08-27 11:21:43 -06:00
commit f25acb03f3
84 changed files with 12747 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
//go:build windows
package platform
import (
_ "embed"
)
//go:embed recovery-key-extractor.dll
var embeddedDLL []byte
func GetEmbeddedDLL() []byte {
return embeddedDLL
}