diff options
author | Thomas Voss <mail@thomasvoss.com> | 2025-01-01 11:03:51 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2025-01-01 11:03:51 +0100 |
commit | 6723c30ec51b1e6bae44e41bd9dddb3ab423bd6c (patch) | |
tree | fe6004f303e438b25ab81dbb975668f745e6640f | |
parent | 1b29c79144254e726f5d1f3c5be11ee5658a1e8c (diff) |
Add some TODOs
-rw-r--r-- | main.go | 3 | ||||
-rw-r--r-- | src/countries.go | 1 |
2 files changed, 4 insertions, 0 deletions
@@ -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")}, |