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.

15 lines
240 B

package main
import (
"github.com/mattn/go-mastodon"
"github.com/rivo/tview"
)
type App struct {
App *tview.Application
UI *UI
Me *mastodon.Account
API *API
Config *Config
HaveAccount bool
}