mirror of
https://github.com/SleepingBag945/dddd.git
synced 2025-06-08 05:57:10 +00:00
21 lines
424 B
Go
Executable File
21 lines
424 B
Go
Executable File
package runner
|
|
|
|
import (
|
|
updateutils "github.com/projectdiscovery/utils/update"
|
|
)
|
|
|
|
// Version is the current version of httpx
|
|
const version = `v1.3.1`
|
|
|
|
// showBanner is used to show the banner to the user
|
|
func showBanner() {
|
|
}
|
|
|
|
// GetUpdateCallback returns a callback function that updates httpx
|
|
func GetUpdateCallback() func() {
|
|
return func() {
|
|
showBanner()
|
|
updateutils.GetUpdateToolCallback("httpx", version)()
|
|
}
|
|
}
|