From b1aab5e55d5dfba726a0aa860d3e6f62c3100477 Mon Sep 17 00:00:00 2001 From: Stephanie Gredell Date: Thu, 12 Jun 2025 03:52:43 -0700 Subject: [PATCH] fix mission json annotation --- internals/design/design.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internals/design/design.go b/internals/design/design.go index 14789ff..d81141a 100644 --- a/internals/design/design.go +++ b/internals/design/design.go @@ -25,8 +25,8 @@ type Connection struct { } type Design struct { - Nodes []Node `json:"nodes"` - Connections []Connection + Nodes []Node `json:"nodes"` + Connections []Connection `json:"connections"` } type Cache struct {