fix(backend/domain): fix typo in error code

This commit is contained in:
Masahiko AMANO 2025-10-09 01:46:10 +03:00
parent bc4354bf7b
commit c7176fadf6

View File

@ -5,7 +5,7 @@ type ErrorCode string
const (
// File errors
ErrFileNotFound ErrorCode = "FILE_NOT_FOUND"
ErrMIMENotSupported ErrorCode = "MIME_NOT_SUPPORTEDF"
ErrMIMENotSupported ErrorCode = "MIME_NOT_SUPPORTED"
// Tag errors
ErrTagNotFound ErrorCode = "TAG_NOT_FOUND"