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