11 lines
111 B
Go
11 lines
111 B
Go
|
package db
|
||
|
|
||
|
import "gorm.io/gorm"
|
||
|
|
||
|
type Metric struct {
|
||
|
gorm.Model
|
||
|
Value uint8
|
||
|
Name string
|
||
|
Short string
|
||
|
}
|