mirror of
https://github.com/SamyRai/turash.git
synced 2025-12-26 23:01:33 +00:00
10 lines
341 B
Go
10 lines
341 B
Go
package localization
|
|
|
|
import "bugulma/backend/internal/domain"
|
|
|
|
// LoadOptions is an alias for domain.EntityLoadOptions to maintain backward compatibility
|
|
type LoadOptions = domain.EntityLoadOptions
|
|
|
|
// EntityHandler is an alias for domain.EntityHandler to maintain backward compatibility
|
|
type EntityHandler[T any] = domain.EntityHandler[T]
|