Add implementation for Identifiable interface for Metric entity

This commit is contained in:
qowevisa 2024-11-20 18:45:23 +02:00
parent 579bb031c7
commit d929492e3d

View File

@ -8,3 +8,7 @@ type Metric struct {
Name string
Short string
}
func (m Metric) GetID() uint {
return m.ID
}