Files
kurious/internal/kurious/domain/mapper.go
2024-01-08 18:31:35 +03:00

7 lines
124 B
Go

package domain
type CourseMapper interface {
CourseThematicNameByID(string) string
LearningTypeNameByID(string) string
}