We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7a0364f + 80f5074 commit ae67bbbCopy full SHA for ae67bbb
.gitignore
@@ -1,2 +1 @@
1
*.exe
2
-simplehttpserver
cmd/simplehttpserver/simplehttpserver.go
@@ -0,0 +1,18 @@
+package main
+
3
+import (
4
+ "github.com/projectdiscovery/gologger"
5
+ "github.com/projectdiscovery/simplehttpserver/internal/runner"
6
+)
7
8
+func main() {
9
+ // Parse the command line flags and read config files
10
+ options := runner.ParseOptions()
11
+ runner, err := runner.New(options)
12
+ if err != nil {
13
+ gologger.Fatal().Msgf("Could not create runner: %s\n", err)
14
+ }
15
16
+ runner.Run()
17
+ runner.Close()
18
+}
0 commit comments