From 637053214cc8c6edfc70fb099eb75e54316bf6cc Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Sun, 11 Aug 2019 04:12:37 +0200 Subject: [PATCH] Renamed statootstics to mastotool --- .gitignore | 2 +- README.md | 20 ++++++++++---------- go.mod | 2 +- main.go | 2 +- 4 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.gitignore b/.gitignore index 520dc52..2b30556 100644 --- a/.gitignore +++ b/.gitignore @@ -15,4 +15,4 @@ *.json # Binary -statootstics +mastotool diff --git a/README.md b/README.md index d5c10a5..dca9925 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -statootstics -============ +mastotool +========= Mastodon Statistics Generator @@ -8,15 +8,15 @@ Mastodon Statistics Generator Make sure you have a working Go environment (Go 1.8 or higher is required). See the [install instructions](http://golang.org/doc/install.html). -To install statootstics, simply run: +To install mastotool, simply run: - go get github.com/muesli/statootstics + go get github.com/muesli/mastotool ## Usage ``` -$ statootstics -help -Usage of ./statootstics: +$ mastotool -help +Usage of ./mastotool: -columns int displays tables with N columns (default 80) -config string @@ -30,7 +30,7 @@ Usage of ./statootstics: ## Example ``` -$ statootstics +$ mastotool Which instance to connect to: https://mastodon.social Username (email): some_user@domain.tld Password: ******** @@ -94,6 +94,6 @@ Another tag ## Development -[![GoDoc](https://godoc.org/github.com/golang/gddo?status.svg)](https://godoc.org/github.com/muesli/statootstics) -[![Build Status](https://travis-ci.org/muesli/statootstics.svg?branch=master)](https://travis-ci.org/muesli/statootstics) -[![Go ReportCard](http://goreportcard.com/badge/muesli/statootstics)](http://goreportcard.com/report/muesli/statootstics) +[![GoDoc](https://godoc.org/github.com/golang/gddo?status.svg)](https://godoc.org/github.com/muesli/mastotool) +[![Build Status](https://travis-ci.org/muesli/mastotool.svg?branch=master)](https://travis-ci.org/muesli/mastotool) +[![Go ReportCard](http://goreportcard.com/badge/muesli/mastotool)](http://goreportcard.com/report/muesli/mastotool) diff --git a/go.mod b/go.mod index 81544e0..e028ae9 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/muesli/statootstics +module github.com/muesli/mastotool require ( github.com/gorilla/websocket v1.4.0 // indirect diff --git a/main.go b/main.go index e5ee256..2cd9f5d 100644 --- a/main.go +++ b/main.go @@ -29,7 +29,7 @@ var ( func registerApp(config *Config) (string, error) { app, err := mastodon.RegisterApp(context.Background(), &mastodon.AppConfig{ Server: config.Value("instance").(string), - ClientName: "statootstics", + ClientName: "mastotool", Scopes: "read", Website: "", })