-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmindee.rb
More file actions
135 lines (109 loc) · 2.03 KB
/
mindee.rb
File metadata and controls
135 lines (109 loc) · 2.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
# frozen_string_literal: true
require 'mindee/logging'
require 'mindee/page_options'
require 'mindee/v1'
require 'mindee/v2'
module Mindee
# Dependency management
module Dependencies
end
# Mindee internal error module.
module Error
end
# Custom extraction module
module Extraction
end
# Mindee internal http module.
module HTTP
end
# PDF-specific operations.
module PDF
end
# Document handling.
module Input
# Document source handling.
module Source
end
end
module Image
# Miscellaneous image operations.
module ImageUtils
end
# Image compressor module to handle image compression.
module ImageCompressor
end
end
# Logging
module Logging
end
# Document input-related internals.
module Input
end
# Collection of all internal products.
module Product
# Europe-specific products.
module EU
end
# France-specific products.
module FR
end
# Indian-specific products.
module IND
end
# US-specific products.
module US
end
end
# V1-specific module.
module V1
# HTTP module for V1.
module HTTP
end
# Parsing internals and fields.
module Parsing
# Common fields and functions.
module Common
end
# Standard fields and functions.
module Standard
end
# Universal fields and functions.
module Universal
end
end
# V1-specific products.
module Product
# French products.
module FR
end
end
end
# V2-specific module.
module V2
# Mindee internal http module.
module HTTP
end
# File operations.
module FileOperation
# Crop operations.
module Crop
end
# Split operations.
module Split
end
end
# Product-specific module.
module Product
end
# V2 parsing module.
module Parsing
# V2 search module.
module Search
end
end
end
end
# Shorthand to call the logger from anywhere.
def logger
Mindee::Logging.logger
end