aboutsummaryrefslogtreecommitdiff
path: root/cmd/mkapp
diff options
context:
space:
mode:
authorChristine Dodrill <me@christine.website>2019-06-04 13:35:44 -0400
committerGitHub <noreply@github.com>2019-06-04 13:35:44 -0400
commit654f273baaaba63bf73fd46a65ecd1440c4758fe (patch)
tree00db6f9b02cc8f6e8cff51a22819e34b582b9c6b /cmd/mkapp
parent7ce978fdecebdf623700fd8c5f882846f1a610ea (diff)
downloadx-654f273baaaba63bf73fd46a65ecd1440c4758fe.tar.xz
x-654f273baaaba63bf73fd46a65ecd1440c4758fe.zip
[minor] move to within.website/x (#14)
* move to within.website/x * Update user_agent.go * cmd/within.website: add bot info page
Diffstat (limited to 'cmd/mkapp')
-rw-r--r--cmd/mkapp/main.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/mkapp/main.go b/cmd/mkapp/main.go
index 376ce52..1827b9c 100644
--- a/cmd/mkapp/main.go
+++ b/cmd/mkapp/main.go
@@ -6,14 +6,14 @@ import (
"log"
"github.com/McKael/madon/v2"
- "github.com/Xe/x/internal"
+ "within.website/x/internal"
)
var (
instance = flag.String("instance", "", "mastodon instance")
appName = flag.String("app-name", "Xe/x bot", "app name for mastodon")
redirectURI = flag.String("redirect-uri", "urn:ietf:wg:oauth:2.0:oob", "redirect URI for app users")
- website = flag.String("website", "https://github.com/Xe/x", "website for users that click the app name")
+ website = flag.String("website", "https://within.website/x", "website for users that click the app name")
username = flag.String("username", "", "username to generate token")
password = flag.String("password", "", "password to generate token")
)