diff options
author | Rasmus Dahlberg <rasmus@rgdd.se> | 2023-07-06 10:44:51 +0200 |
---|---|---|
committer | Rasmus Dahlberg <rasmus@rgdd.se> | 2023-07-06 10:46:09 +0200 |
commit | fc6866e229ba8b4278ed1dce79351b40481e6c2a (patch) | |
tree | fbe288a9b950cb901865e28749749b4c20951370 | |
parent | 8fb3d9985504e01a3abdd7dbe1d7c86b2110c7b0 (diff) |
Set module name for hosting at gitlab.torproject.org
-rw-r--r-- | README.md | 4 | ||||
-rw-r--r-- | docs/operations.md | 1 | ||||
-rw-r--r-- | go.mod | 2 | ||||
-rw-r--r-- | main.go | 8 |
4 files changed, 8 insertions, 7 deletions
@@ -5,7 +5,7 @@ A tool that visits a list of domains over HTTPS to see if they have [Onion-Location]: https://community.torproject.org/onion-services/advanced/onion-location/ -**Warning:** research prototype. The source code may also be moved. +**Warning:** research prototype. ## Quickstart @@ -19,7 +19,7 @@ You will need a [Go compiler][] on the local system: Install `onion-grab`: - $ go install git.cs.kau.se/rasmoste/onion-grab@latest + $ go install gitlab.torproject.org/tpo/onion-services/onion-grab@latest List all options: diff --git a/docs/operations.md b/docs/operations.md index 3f67a92..9c213d6 100644 --- a/docs/operations.md +++ b/docs/operations.md @@ -130,6 +130,7 @@ In the full measurement, we had to replace Stockholm with Frankfurt (see notes). | 2023/04/13 | 00:35:38 | de fra completed | minor exit bug [18] | | 2023/04/13 | 05:40 | prepare dataset (de fra) | moving files on VM-3, transfer to VM-1 [19] | | 2023/04/13 | 05:50 | experiment is completed | datasets are ready, zipped, and documented | +| 2023/07/06 | | move source to tpo gitlab | git.cs.kau.se/rasmoste is not a stable home | ## Notes @@ -1,4 +1,4 @@ -module git.cs.kau.se/rasmoste/onion-grab +module gitlab.torproject.org/tpo/onion-services/onion-grab go 1.20 @@ -14,10 +14,10 @@ import ( "syscall" "time" - "git.cs.kau.se/rasmoste/onion-grab/internal/line" - "git.cs.kau.se/rasmoste/onion-grab/internal/onionloc" - "git.cs.kau.se/rasmoste/onion-grab/internal/options" - "git.cs.kau.se/rasmoste/onion-grab/internal/qna" + "gitlab.torproject.org/tpo/onion-services/onion-grab/internal/line" + "gitlab.torproject.org/tpo/onion-services/onion-grab/internal/onionloc" + "gitlab.torproject.org/tpo/onion-services/onion-grab/internal/options" + "gitlab.torproject.org/tpo/onion-services/onion-grab/internal/qna" ) func main() { |