refact: removed dead structs

This commit is contained in:
Joshua Shoemaker 2023-05-26 19:23:05 -05:00
parent 8b55241ee4
commit 7335b636f4
3 changed files with 0 additions and 18 deletions

View File

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

View File

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

View File

@ -2,8 +2,6 @@ package document
import "textualize/entities"
type UserMarkdown entities.UserMarkdown
type UserMarkdownCollection struct {
Values []entities.UserMarkdown
}