comment out unused struct fields

This commit is contained in:
Victor Vrantchan
2016-05-02 16:53:38 -04:00
parent c2b562b638
commit 8c61bfbca0

View File

@@ -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