From 8c61bfbca06e2f0c96e0aa928d2db4f666d35e93 Mon Sep 17 00:00:00 2001 From: Victor Vrantchan Date: Mon, 2 May 2016 16:53:38 -0400 Subject: [PATCH] comment out unused struct fields --- workflow/workflow.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/workflow/workflow.go b/workflow/workflow.go index 99dfb62e..d6b34e64 100644 --- a/workflow/workflow.go +++ b/workflow/workflow.go @@ -24,11 +24,11 @@ type application struct { // Workflow is a device workflow type Workflow struct { - UUID string `db:"workflow_uuid"` - Name string `db:"name"` - Profiles []profile.Profile - Applications []application - IncludedWorkflows []Workflow + UUID string `db:"workflow_uuid"` + Name string `db:"name"` + Profiles []profile.Profile + // Applications []application + // IncludedWorkflows []Workflow } // Datastore manages interactions of workflows in a database