mirror of
https://github.com/moonD4rk/HackBrowserData.git
synced 2026-05-19 18:58:03 +02:00
feat: add doc for interface function. Close #23
This commit is contained in:
@@ -19,10 +19,19 @@ import (
|
||||
)
|
||||
|
||||
type Item interface {
|
||||
// ChromeParse parse chrome items, Password and Cookie need secret key
|
||||
ChromeParse(key []byte) error
|
||||
|
||||
// FirefoxParse parse firefox items
|
||||
FirefoxParse() error
|
||||
|
||||
// OutPut with json or csv
|
||||
OutPut(format, browser, dir string) error
|
||||
|
||||
// Copy item file to local path
|
||||
CopyItem() error
|
||||
|
||||
// Release item file
|
||||
Release() error
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user