Merge branch 'main' into test/multiple-peer-logging

This commit is contained in:
crn4
2025-06-18 18:35:11 +02:00
17 changed files with 602 additions and 311 deletions

View File

@@ -230,3 +230,7 @@ func NewUserRoleNotFoundError(role string) error {
func NewOperationNotFoundError(operation operations.Operation) error {
return Errorf(NotFound, "operation: %s not found", operation)
}
func NewRouteNotFoundError(routeID string) error {
return Errorf(NotFound, "route: %s not found", routeID)
}