diff options
author | Rasmus Dahlberg <rasmus@mullvad.net> | 2022-03-30 20:13:59 +0200 |
---|---|---|
committer | Rasmus Dahlberg <rasmus@mullvad.net> | 2022-03-30 20:13:59 +0200 |
commit | f801aee1378f536a41f0eb5a299787a28d983137 (patch) | |
tree | 6e0aba5e699736adf4c122fd86894531d12f7fa4 /issues/simplify-ascii-pkg | |
parent | 999cf63440bb08bd2588b924a8a4309c7273adff (diff) |
move issues into a common pad
Diffstat (limited to 'issues/simplify-ascii-pkg')
-rw-r--r-- | issues/simplify-ascii-pkg | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/issues/simplify-ascii-pkg b/issues/simplify-ascii-pkg deleted file mode 100644 index db61a4d..0000000 --- a/issues/simplify-ascii-pkg +++ /dev/null @@ -1,10 +0,0 @@ -The current ASCII package implements general key-value parsing for types. It -is more complicated than it needs to be, especially since we have so few types. - -Consider replacing the general ASCII package with something simpler. For -example, just parse values into - - type Map map[string][]string - -and add methods to dequeue a value for a key. Each type could then extract its -own values without too much code duplication. |