diff options
Diffstat (limited to 'config.go')
| -rw-r--r-- | config.go | 32 |
1 files changed, 16 insertions, 16 deletions
@@ -87,22 +87,22 @@ func makeNewTOML(gibts bool) { config = Config{file, n, n, n, n, n, n, n, n, n, n, n, n, n, n, n} } //fmt.Println("Whats Your Namecount\n") - database := getNewInterInput("DB File Path: ", config.Database) - name := getNewInterInput("Whats your Name?: ", config.Name) - street := getNewInterInput("Street: ", config.Street) - zip := getNewInterInput("Zip Code: ", config.Zip) - city := getNewInterInput("City: ", config.City) - country := getNewInterInput("Country: ", config.City) - telefon := getNewInterInput("Telefone number: ", config.Telefon) - mobile := getNewInterInput("Mobile number: ", config.Mobile) - mail := getNewInterInput("Email: ", config.Mail) - url := getNewInterInput("URL: ", config.Url) - taxid := getNewInterInput("Tax ID: ", config.Taxid) - bankname := getNewInterInput("Bank Name: ", config.Bankname) - bankacc := getNewInterInput("Bank Account: ", config.Bankacc) - banklz := getNewInterInput("BLZ: ", config.Banklz) - iban := getNewInterInput("IBAN: ", config.Iban) - bic := getNewInterInput("BIC: ", config.Bic) + database := getNewInterInput("DB File Path: ", config.Database, nli) + name := getNewInterInput("Whats your Name?: ", config.Name, nli) + street := getNewInterInput("Street: ", config.Street, nli) + zip := getNewInterInput("Zip Code: ", config.Zip, nli) + city := getNewInterInput("City: ", config.City, nli) + country := getNewInterInput("Country: ", config.Country, nli) + telefon := getNewInterInput("Telefone number: ", config.Telefon, nli) + mobile := getNewInterInput("Mobile number: ", config.Mobile, nli) + mail := getNewInterInput("Email: ", config.Mail, nli) + url := getNewInterInput("URL: ", config.Url, nli) + taxid := getNewInterInput("Tax ID: ", config.Taxid, nli) + bankname := getNewInterInput("Bank Name: ", config.Bankname, nli) + bankacc := getNewInterInput("Bank Account: ", config.Bankacc, nli) + banklz := getNewInterInput("BLZ: ", config.Banklz, nli) + iban := getNewInterInput("IBAN: ", config.Iban, nli) + bic := getNewInterInput("BIC: ", config.Bic, nli) conf := Config{database, name, street, zip, city, country, telefon, mobile, mail, url, taxid, bankacc, banklz, bankname, iban, bic} |
