mirror of
https://github.com/moonD4rk/HackBrowserData.git
synced 2026-07-12 21:46:33 +02:00
refactor: Optimize traversal browser data logic (#311)
* refactor: Refactor package names and imports for better code organization. * refactor: Package imports and variable types for consistency * chore: Disable unused-parameter rule in revive. * refactor: Refactor and organize data extraction and browserdata parse. * fix: rename wrong error message info
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
// Package browserdata is responsible for initializing all the necessary
|
||||
// components that handle different types of browser data extraction.
|
||||
// This file, imports.go, is specifically used to import various data
|
||||
// handler packages to ensure their initialization logic is executed.
|
||||
// These imports are crucial as they trigger the `init()` functions
|
||||
// within each package, which typically handle registration of their
|
||||
// specific data handlers to a central registry.
|
||||
package browserdata
|
||||
|
||||
import (
|
||||
_ "github.com/moond4rk/hackbrowserdata/browserdata/bookmark"
|
||||
_ "github.com/moond4rk/hackbrowserdata/browserdata/cookie"
|
||||
_ "github.com/moond4rk/hackbrowserdata/browserdata/creditcard"
|
||||
_ "github.com/moond4rk/hackbrowserdata/browserdata/download"
|
||||
_ "github.com/moond4rk/hackbrowserdata/browserdata/extension"
|
||||
_ "github.com/moond4rk/hackbrowserdata/browserdata/history"
|
||||
_ "github.com/moond4rk/hackbrowserdata/browserdata/localstorage"
|
||||
_ "github.com/moond4rk/hackbrowserdata/browserdata/password"
|
||||
_ "github.com/moond4rk/hackbrowserdata/browserdata/sessionstorage"
|
||||
)
|
||||
Reference in New Issue
Block a user