Files
ironmount/internal/db/schema.go
2025-08-11 15:51:42 +02:00

13 lines
130 B
Go

package db
import (
"gorm.io/gorm"
)
type Volume struct {
gorm.Model
Name string `json:"name"`
Path string `json:"path"`
}