TUN-2125: Add PostgresType() to Scope
This commit is contained in:
parent
74f3a55c57
commit
d3d9460f64
|
@ -131,6 +131,7 @@ func UnmarshalServerInfo(s tunnelrpc.ServerInfo) (*ServerInfo, error) {
|
||||||
//go-sumtype:decl Scope
|
//go-sumtype:decl Scope
|
||||||
type Scope interface {
|
type Scope interface {
|
||||||
Value() string
|
Value() string
|
||||||
|
PostgresType() string
|
||||||
isScope()
|
isScope()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -143,6 +144,7 @@ func NewSystemName(systemName string) *SystemName {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *SystemName) Value() string { return s.systemName }
|
func (s *SystemName) Value() string { return s.systemName }
|
||||||
|
func (s *SystemName) PostgresType() string { return "system_name" }
|
||||||
|
|
||||||
func (_ *SystemName) isScope() {}
|
func (_ *SystemName) isScope() {}
|
||||||
|
|
||||||
|
@ -155,6 +157,7 @@ func NewGroup(group string) *Group {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (g *Group) Value() string { return g.group }
|
func (g *Group) Value() string { return g.group }
|
||||||
|
func (g *Group) PostgresType() string { return "group" }
|
||||||
|
|
||||||
func (_ *Group) isScope() {}
|
func (_ *Group) isScope() {}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue