SquidSpirit a4394eea9e
All checks were successful
Frontend CI / build (push) Successful in 1m56s
BLOG-43 feat: get all posts
2025-03-28 00:02:34 +08:00

12 lines
241 B
Go

package graphdto
import "git.squidspirit.com/squid/blog.git/backend/internal/domain"
func NewLabelDTO(labelEntity *domain.Label) *Label {
return &Label{
ID: labelEntity.ID,
Name: labelEntity.Name,
Color: labelEntity.Color,
}
}