diff options
| author | Nikolaus Gotsche <n@softwarefools.com> | 2018-10-23 11:43:26 +0200 |
|---|---|---|
| committer | Nikolaus Gotsche <n@softwarefools.com> | 2018-10-23 11:43:26 +0200 |
| commit | 3bbc28806f43c323b21d9053a9e25c89614d5f60 (patch) | |
| tree | 58765389496b737cfc50f07f408ca17ff9388b89 /config.go | |
| parent | 404386194b9492b29b03d4e1e65558c545a70b51 (diff) | |
Frames and Timedebug0.3.2
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} |
