Update wiki for new changes; fix compilation for some platforms

This commit is contained in:
2025-12-26 21:14:20 -05:00
parent 6004a94b77
commit cc626363c7
10 changed files with 18 additions and 43 deletions
+1 -3
View File
@@ -1,9 +1,7 @@
package global
type ByteInputFetcher func(prompt string) []byte
var (
GetPassword ByteInputFetcher // Clients should set this to a function that fetches hidden input from the user
GetPassword func(prompt string) []byte // Clients should set this to a function that fetches hidden input from the user
RootLength = len(EntryRoot)
)