Skip to content
This repository has been archived by the owner on Mar 29, 2023. It is now read-only.

Commit

Permalink
refactor: README
Browse files Browse the repository at this point in the history
  • Loading branch information
niudaii committed Sep 3, 2022
1 parent c02786e commit 6c4fd6f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions cmd/crack/crack.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package main
import (
"github.com/niudaii/crack/internal/runner"
"github.com/projectdiscovery/gologger"
"time"
)

func main() {
Expand All @@ -11,5 +12,8 @@ func main() {
if err != nil {
gologger.Fatal().Msgf("Could not create runner: %v", err)
}
start := time.Now()
gologger.Info().Msgf("当前时间: %v", start.Format("2006-01-02 15:04:05"))
newRunner.Run()
gologger.Info().Msgf("花费时间: %v", time.Since(start))
}

0 comments on commit 6c4fd6f

Please sign in to comment.