Mike Schwörer
ec672fbd49
Some checks failed
Build Docker and Deploy / Run goext test-suite (push) Has been cancelled
14 lines
151 B
Go
14 lines
151 B
Go
package exerr
|
|
|
|
type Proxy struct {
|
|
v ExErr
|
|
}
|
|
|
|
func (p *Proxy) UniqueID() string {
|
|
return p.v.UniqueID
|
|
}
|
|
|
|
func (p *Proxy) Get() ExErr {
|
|
return p.v
|
|
}
|