(entity entities.Entity)
| 109 | } |
| 110 | |
| 111 | func entityDTO(entity entities.Entity) EntityDTO { |
| 112 | return EntityDTO{ |
| 113 | Kind: string(entity.Kind), Name: entity.Name, Description: entity.Description, |
| 114 | Content: entity.Content, Path: entity.Path, Apps: entity.Apps, Tags: entity.Tags, |
| 115 | Metadata: entity.Metadata, UpdatedAt: entity.UpdatedAt.Format("2006-01-02T15:04:05Z07:00"), |
| 116 | } |
| 117 | } |