Files
devstar/services/devstar_cloud_provider/errors/ErrFailed2GetNatRules.go
戴明辰 8123bdf277 [Fix] Cloud NAT Rule Deletion Upon DevContainer Deletion
* NAT Rule deletion upon DevContainer deletion
* NAT Port query and delete
2024-12-11 02:55:26 +00:00

14 lines
204 B
Go

package errors
import (
"fmt"
)
type ErrFailed2GetNatRules struct {
Reason string
}
func (err ErrFailed2GetNatRules) Error() string {
return fmt.Sprintf("Failed to get NAT Rules: %s", err.Reason)
}