diff options
author | Joe <rbo@gmx.us> | 2024-01-10 20:20:20 +0100 |
---|---|---|
committer | Joe <rbo@gmx.us> | 2024-01-10 20:20:20 +0100 |
commit | e8851df32d7356864b4fd8825bb045a1c7e510da (patch) | |
tree | a93e5fc3b4f4bc47882a7aa94fc5709bc8c9e579 /c_hardflip.go | |
parent | go full double list, maybe map (diff) | |
download | hardflip-e8851df32d7356864b4fd8825bb045a1c7e510da.tar.gz hardflip-e8851df32d7356864b4fd8825bb045a1c7e510da.tar.bz2 hardflip-e8851df32d7356864b4fd8825bb045a1c7e510da.tar.xz hardflip-e8851df32d7356864b4fd8825bb045a1c7e510da.tar.zst hardflip-e8851df32d7356864b4fd8825bb045a1c7e510da.zip |
revert if needed
Diffstat (limited to 'c_hardflip.go')
-rw-r--r-- | c_hardflip.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/c_hardflip.go b/c_hardflip.go index 17712ae..02952bd 100644 --- a/c_hardflip.go +++ b/c_hardflip.go @@ -60,6 +60,7 @@ type HardData struct { ui HardUI opts HardOpts data_dir string + folds map[*ItemsNode]*ItemsList } func main() { @@ -73,6 +74,7 @@ func main() { HardUI{}, opts, data_dir, + make(map[*ItemsNode]*ItemsList), } i_ui(&data) } |