├── .gitignore ├── .goreleaser.yml ├── LICENSE ├── README.md ├── dict └── dict.go ├── go.mod ├── go.sum ├── main.go └── utils └── xdg.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanji-dev/tango/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanji-dev/tango/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanji-dev/tango/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanji-dev/tango/HEAD/README.md -------------------------------------------------------------------------------- /dict/dict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanji-dev/tango/HEAD/dict/dict.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanji-dev/tango/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanji-dev/tango/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanji-dev/tango/HEAD/main.go -------------------------------------------------------------------------------- /utils/xdg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanji-dev/tango/HEAD/utils/xdg.go --------------------------------------------------------------------------------