From 6110b909347dd18f0950ebbbd5aa8412e61a49bc Mon Sep 17 00:00:00 2001 From: Brian Buller Date: Wed, 1 Apr 2020 14:51:28 -0500 Subject: [PATCH] Change name --- .gitignore | 4 ++-- app_config.go | 6 +++--- main.go | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 029c065..6b8358d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ # Binary -twitstch +twimgarc # Configuration -twitstch.conf +twimgarc.conf diff --git a/app_config.go b/app_config.go index 3475bda..588d3c1 100644 --- a/app_config.go +++ b/app_config.go @@ -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) { diff --git a/main.go b/main.go index 14103cc..fc43027 100644 --- a/main.go +++ b/main.go @@ -13,7 +13,7 @@ import ( "github.com/dghubble/oauth1" ) -const AppName = "twitstch" +const AppName = "twimgarc" var appConfig *AppConfig