summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--main.go3
-rw-r--r--src/countries.go1
2 files changed, 4 insertions, 0 deletions
diff --git a/main.go b/main.go
index 5bf0a51..3207f64 100644
--- a/main.go
+++ b/main.go
@@ -1,5 +1,8 @@
package main
+/* TODO: Customize logger format when running in a debug state */
+/* TODO: Set production logger to the syslog */
+
import (
"flag"
diff --git a/src/countries.go b/src/countries.go
index 3fa764b..b8a27bd 100644
--- a/src/countries.go
+++ b/src/countries.go
@@ -12,6 +12,7 @@ type country struct {
}
func sortedCountries(p Printer) []country {
+ /* TODO: Add Kosovo and Montenegro */
xs := []country{
{Code: "ad", Name: p.T("Andorra")},
{Code: "at", Name: p.T("Austria")},