10 lines
184 B
Go
10 lines
184 B
Go
package models
|
|
|
|
import "github.com/google/uuid"
|
|
|
|
type Subscribed struct {
|
|
Uuid uuid.UUID `json:"uuid"`
|
|
Path string `json:"path"`
|
|
Driver *Driver `json:"driver,omitempty"`
|
|
}
|