mirror of
https://github.com/Receipt-Wrangler/receipt-wrangler-api.git
synced 2026-01-26 21:29:25 -06:00
15 lines
353 B
Go
15 lines
353 B
Go
package constants
|
|
|
|
import "time"
|
|
|
|
const ApplicationJson = "application/json"
|
|
const ApplicationZip = "application/zip"
|
|
const ApplicationPdf = "application/pdf"
|
|
const ImageHeic = "image/heic"
|
|
const AnyImage = "image/*"
|
|
const TextPlain = "text/plain"
|
|
const TextCsv = "text/csv"
|
|
const MultipartFormMaxSize = 50 << 20
|
|
|
|
const AiHttpTimeout = 10 * time.Minute
|