mirror of
https://github.com/thatmattlove/hyperglass.git
synced 2026-01-17 00:38:06 +00:00
18 lines
252 B
Go
18 lines
252 B
Go
package models
|
|
|
|
import (
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
type Proxy struct {
|
|
Model
|
|
Name string
|
|
Address string
|
|
CredentialID uuid.UUID
|
|
Credential Credential
|
|
Devices []Device
|
|
}
|
|
|
|
func (Proxy) TableName() string {
|
|
return "proxies"
|
|
}
|