diff --git a/README.md b/README.md index a31888f..344cd4a 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ This is a simple script that will erase users from a Synapse server based on spe It was developed for the [etke.cc demo server](https://etke.cc/demo/) for the purpose of cleaning up the user database. -Another purpose of this repo is to be a test stand for migrating our [gitlab repos](https://gitlab.com/etke.cc) to [github](https://github.com/etke-cc) +Another purpose of this repo is to be a test stand for migrating our [gitlab repos](https://gitlab.com/etke.cc) to [github](https://github.com/etkecc) Don't expect this to be a full-featured tool, it's just a simple script that does one thing. @@ -31,9 +31,9 @@ Check `.env.example` for an example configuration. ```bash # if you want to run it with docker, do this -$ docker run --rm --env-file .env ghcr.io/etke-cc/synapse-user-autoerase +$ docker run --rm --env-file .env ghcr.io/etkecc/synapse-user-autoerase # if you have binary, run it like this -$ suae +$ synapse-user-auto-erase # if you want to run from source $ just run ``` diff --git a/cmd/main.go b/cmd/main.go index 6db8352..dcc78ae 100644 --- a/cmd/main.go +++ b/cmd/main.go @@ -10,7 +10,7 @@ import ( "strings" "time" - "github.com/etke-cc/synapse-user-autoerase/internal/config" + "github.com/etkecc/synapse-user-autoerase/internal/config" ) // Account is a struct that holds the information about a user account, @@ -38,7 +38,7 @@ type DeletedMediaResponse struct { } // UserAgent is the user agent that is used for the HTTP requests -const UserAgent = "Synapse User Auto Erase (library; +https://github.com/etke-cc/synapse-user-autoerase)" +const UserAgent = "Synapse User Auto Erase (library; +https://github.com/etkecc/synapse-user-autoerase)" // omitPrefixes is a list of prefixes that should be omitted/ignored from the list of users // this list contains most of the common prefixes that are used by bots and bridges. diff --git a/go.mod b/go.mod index c12856c..ad5a544 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/etke-cc/synapse-user-autoerase +module github.com/etkecc/synapse-user-autoerase go 1.22.5