Change name

This commit is contained in:
Brian Buller 2020-04-01 14:51:28 -05:00
parent ec4f54cffc
commit 6110b90934
3 changed files with 6 additions and 6 deletions

4
.gitignore vendored
View File

@ -1,4 +1,4 @@
# Binary
twitstch
twimgarc
# Configuration
twitstch.conf
twimgarc.conf

View File

@ -19,9 +19,9 @@ type AppConfig struct {
AppToken string `toml:"app_token"`
AppSecret string `toml:"app_secret"`
PullCount int
ForceDownload bool
Verbose bool
PullCount int `toml:"-"`
ForceDownload bool `toml:"-"`
Verbose bool `toml:"-"`
}
func NewAppConfig(args []string) (*AppConfig, error) {

View File

@ -13,7 +13,7 @@ import (
"github.com/dghubble/oauth1"
)
const AppName = "twitstch"
const AppName = "twimgarc"
var appConfig *AppConfig