Skip to content
This repository was archived by the owner on Mar 3, 2022. It is now read-only.

Commit

Permalink
Merge pull request #28 from KeisukeToyota/feature/add-ci
Browse files Browse the repository at this point in the history
READMEにバッジ表示
  • Loading branch information
ksk001100 authored Jan 30, 2019
2 parents d786b4b + 69de811 commit 55c8423
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 22 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
# toyotter2
![](https://img.shields.io/github/stars/KeisukeToyota/toyotter2.svg)
![](https://img.shields.io/github/issues/KeisukeToyota/toyotter2.svg)
![](https://img.shields.io/github/forks/KeisukeToyota/toyotter2.svg)
![](https://img.shields.io/github/license/KeisukeToyota/toyotter2.svg)
[![Go Report Card](https://goreportcard.com/badge/github.com/KeisukeToyota/toyotter2)](https://goreportcard.com/report/github.com/KeisukeToyota/toyotter2)

Golang製のCUIベースTwitterクライアント

## インストール

```shell
$ go get github.com/KeisukeToyota/toyotter2
$ cp $GOPATH/src/github.com/KeisukeToyota/toyotter2/.env.example ~/.env.toyotter
$ cp $GOPATH/src/github.com/KeisukeToyota/toyotter2/.env.example ~/.env.toyotter
```
macOSはHomebrewでもインストールできます
```shell
Expand Down Expand Up @@ -107,4 +112,3 @@ $ toyotter2 -h #=> 全体のヘルプ
$ toyotter2 timeline --help #=> timelineコマンドのヘルプ
$ toyotter2 rt -h #=> retweetコマンドのヘルプ
```

6 changes: 5 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,9 @@ func main() {
commands.MuteCommand(api, v),
}

app.Run(os.Args)
err := app.Run(os.Args)

if err != nil {
panic(err)
}
}
19 changes: 0 additions & 19 deletions twitter/dm.go

This file was deleted.

0 comments on commit 55c8423

Please sign in to comment.