From 527e05e7662fcc47de2d0dfbbf2d6e759d42f6ab Mon Sep 17 00:00:00 2001 From: Ice3man543 Date: Tue, 3 Dec 2019 18:00:17 +0530 Subject: [PATCH] Added cmd package --- cmd/subfinder/main.go | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 cmd/subfinder/main.go diff --git a/cmd/subfinder/main.go b/cmd/subfinder/main.go new file mode 100644 index 0000000..40d8215 --- /dev/null +++ b/cmd/subfinder/main.go @@ -0,0 +1,10 @@ +package main + +import "github.com/subfinder/subfinder/pkg/runner" + +func main() { + // Parse the command line flags and read config files + options := runner.ParseOptions() + + _ = options +}