diff --git a/core/Consts/Consts.go b/core/Consts/Consts.go index 0d4d37a..4f0aef0 100644 --- a/core/Consts/Consts.go +++ b/core/Consts/Consts.go @@ -2,12 +2,6 @@ package consts import "textualize/entities" -// type Language struct { -// DisplayName string -// ProcessCode string -// TranslateCode string -// } - func GetSuppportedLanguages() []entities.Language { return []entities.Language{ { diff --git a/core/Document/ProcessedText.go b/core/Document/ProcessedText.go index 1423ffd..ecfc701 100644 --- a/core/Document/ProcessedText.go +++ b/core/Document/ProcessedText.go @@ -2,16 +2,6 @@ package document import "textualize/entities" -type ProcessedBoundingBox entities.ProcessedBoundingBox - -type ProcessedSymbol entities.ProcessedSymbol - -type ProcessedWord entities.ProcessedWord - -type ProcessedLine entities.ProcessedLine - -type ProcessedArea entities.ProcessedArea - type ProcessedAreaCollection struct { Areas []entities.ProcessedArea } diff --git a/core/Document/UserMarkdown.go b/core/Document/UserMarkdown.go index a3278a6..154dfe3 100644 --- a/core/Document/UserMarkdown.go +++ b/core/Document/UserMarkdown.go @@ -2,8 +2,6 @@ package document import "textualize/entities" -type UserMarkdown entities.UserMarkdown - type UserMarkdownCollection struct { Values []entities.UserMarkdown }