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 # Binary
twitstch twimgarc
# Configuration # Configuration
twitstch.conf twimgarc.conf

View File

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

View File

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