goext/exerr/proxy.go
Mike Schwörer ec672fbd49
Some checks failed
Build Docker and Deploy / Run goext test-suite (push) Has been cancelled
v0.0.527
2024-10-07 17:19:30 +02:00

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
}