2024-11-19 09:12:28 +01:00
|
|
|
package db
|
|
|
|
|
|
|
|
import "gorm.io/gorm"
|
|
|
|
|
|
|
|
type Metric struct {
|
|
|
|
gorm.Model
|
2024-12-01 12:16:44 +01:00
|
|
|
Type uint8
|
2024-11-19 09:12:28 +01:00
|
|
|
Name string
|
|
|
|
Short string
|
|
|
|
}
|
2024-11-20 17:45:23 +01:00
|
|
|
|
|
|
|
func (m Metric) GetID() uint {
|
|
|
|
return m.ID
|
|
|
|
}
|