diff options
author | Rasmus Dahlberg <rasmus@rgdd.se> | 2024-06-02 08:29:49 +0200 |
---|---|---|
committer | Rasmus Dahlberg <rasmus@rgdd.se> | 2024-06-02 08:36:35 +0200 |
commit | 279de6a1195adb739a8d1f2afb445b68793b28b8 (patch) | |
tree | a6f72f890fb04d4ee5a55563bd83d8855e1a108d /cmd/silentct-mon | |
parent | 32b81ec4777ede7fdb4e0172c0011e238bdacb60 (diff) |
chore: Remove dash in project name
To be consistent with naming of the tools in cmd/.
Diffstat (limited to 'cmd/silentct-mon')
-rw-r--r-- | cmd/silentct-mon/examples.help2man | 2 | ||||
-rw-r--r-- | cmd/silentct-mon/main.go | 14 |
2 files changed, 8 insertions, 8 deletions
diff --git a/cmd/silentct-mon/examples.help2man b/cmd/silentct-mon/examples.help2man index 3fc76ff..33cb583 100644 --- a/cmd/silentct-mon/examples.help2man +++ b/cmd/silentct-mon/examples.help2man @@ -16,7 +16,7 @@ A basic configuration is shown below. { "name": "example.org", "secret": "sikritpassword", - "url": "https://www.example.org/silent-ct/allowlist", + "url": "https://www.example.org/silentct/allowlist", "issues": [ "example.org", "www.example.org" diff --git a/cmd/silentct-mon/main.go b/cmd/silentct-mon/main.go index 2cb325a..e2ecdb7 100644 --- a/cmd/silentct-mon/main.go +++ b/cmd/silentct-mon/main.go @@ -13,13 +13,13 @@ import ( "syscall" "time" - "rgdd.se/silent-ct/internal/feedback" - "rgdd.se/silent-ct/internal/flagopt" - "rgdd.se/silent-ct/internal/ioutil" - "rgdd.se/silent-ct/internal/logger" - "rgdd.se/silent-ct/internal/manager" - "rgdd.se/silent-ct/internal/monitor" - "rgdd.se/silent-ct/pkg/policy" + "rgdd.se/silentct/internal/feedback" + "rgdd.se/silentct/internal/flagopt" + "rgdd.se/silentct/internal/ioutil" + "rgdd.se/silentct/internal/logger" + "rgdd.se/silentct/internal/manager" + "rgdd.se/silentct/internal/monitor" + "rgdd.se/silentct/pkg/policy" ) const usage = ` |