You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
1 year ago | |
---|---|---|
toot | 2 years ago | |
ui | 1 year ago | |
.gitignore | 3 years ago | |
LICENSE | 3 years ago | |
Makefile | 2 years ago | |
README.md | 3 years ago | |
go.mod | 1 year ago | |
go.sum | 1 year ago | |
main.go | 2 years ago | |
testmedia.png | 3 years ago |
README.md
Go Toot!
This is a GTK-based Mastodon Client written in Go.
Config-file
Default config file is gotootoot.cfg
in /
folder. The config file is created automatically if it does not exist.
{
"Token": {
/**
* Token gotten from oauth2-lib is saved here
**/
},
"ClientId": "<clientID>",
"ClientSecret": "<clientSecret>",
"Server": "<server>",
"Scopes": [
"read",
"write"
]
}
Build-Time Dependencies
- golang.org/x/oauth2
- github.com/gotk3/gotk3
Install with:
go get github.com/gotk3/gotk3/gtk golang.org/x/oauth2