From b5aa2220e96757998d0e65289d5d2937346cd513 Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Fri, 3 Mar 2023 16:08:23 -0600 Subject: [PATCH] Add solution property return --- src/endpoints/guess.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/endpoints/guess.ts b/src/endpoints/guess.ts index b65739c..151698d 100644 --- a/src/endpoints/guess.ts +++ b/src/endpoints/guess.ts @@ -102,6 +102,7 @@ const route: ServerRoute = { status: 3, current: data.current, incorrect: data.incorrect, + solution: data.solution, }; };