Skip to content

Commit

Permalink
adding missing files
Browse files Browse the repository at this point in the history
  • Loading branch information
Mzack9999 committed Feb 26, 2021
1 parent 7a0364f commit 80f5074
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
@@ -1,2 +1 @@
*.exe
simplehttpserver
18 changes: 18 additions & 0 deletions cmd/simplehttpserver/simplehttpserver.go
@@ -0,0 +1,18 @@
package main

import (
"github.com/projectdiscovery/gologger"
"github.com/projectdiscovery/simplehttpserver/internal/runner"
)

func main() {
// Parse the command line flags and read config files
options := runner.ParseOptions()
runner, err := runner.New(options)
if err != nil {
gologger.Fatal().Msgf("Could not create runner: %s\n", err)
}

runner.Run()
runner.Close()
}

0 comments on commit 80f5074

Please sign in to comment.