fix: compile error for linux

This commit is contained in:
ᴍᴏᴏɴD4ʀᴋ 2020-07-10 16:33:06 +08:00
parent 500ac34ab3
commit 8a3f4b8fee
2 changed files with 5 additions and 3 deletions

View File

@ -53,9 +53,6 @@ const (
FirefoxKey3DB = "key3.db"
)
func InitKey(string) error {
return nil
}
func ListBrowser() []string {
var l []string

View File

@ -33,6 +33,11 @@ var (
}
)
func InitKey(string) error {
return nil
}
func DecryptStringWithDPAPI(data []byte) (string, error) {
return string(data), nil
}