aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorRasmus Dahlberg <rasmus@rgdd.se>2023-03-17 14:11:40 +0100
committerRasmus Dahlberg <rasmus@rgdd.se>2023-03-17 14:11:40 +0100
commited5d64ecd944881aca33c59684a612b6e45de21b (patch)
tree688c32cab19f8703e54085fcbd23d8fb0b4f5b44 /main.go
parentcb84421646b01e354d19297b772ba5b68404fb79 (diff)
more wip collect
Diffstat (limited to 'main.go')
-rw-r--r--main.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/main.go b/main.go
index dea0df7..53cfd65 100644
--- a/main.go
+++ b/main.go
@@ -2,7 +2,7 @@
//
// Install:
//
-// go install gitlab.torproject.org/rgdd/ct/cmd/ct-sans@latest
+// go install git.cs.kau.se/rasmoste/ct-sans@latest
//
// Usage:
//
@@ -55,6 +55,8 @@ type options struct {
workersPerLog uint64
batchSize uint64
persistSize uint64
+
+ httpAgent string
}
func main() {
@@ -93,6 +95,8 @@ func main() {
opts.batchSize = 10
opts.persistSize = 1
+ opts.httpAgent = "wip"
+
// Hand-over to the respective subcommands
var err error
switch cmd := os.Args[1]; cmd {