13 lines
193 B
Go
13 lines
193 B
Go
package db
|
|
|
|
import (
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
type Volume struct {
|
|
gorm.Model
|
|
Name string `json:"name"`
|
|
Path string `json:"path"`
|
|
Type string `json:"type"`
|
|
Config string `json:"config"`
|
|
}
|