1
0
mirror of https://github.com/kataras/iris.git synced 2026-01-21 02:45:59 +00:00

CI: minor: use the new exclude-paths (dependabot PR approved some days ago)

This commit is contained in:
Gerasimos (Makis) Maropoulos
2025-08-16 22:48:38 +03:00
parent a8a3afea22
commit 92164cee52
37 changed files with 268 additions and 266 deletions

View File

@@ -19,7 +19,7 @@ type (
Pattern string
// Target is the target Host that incoming requests will be redirected on pattern match
// or an Application's Name that will handle the incoming request matched the Pattern.
Target interface{} // It was a string in my initial design but let's do that interface{}, we may support more types here in the future, until generics are in, keep it interface{}.
Target any // It was a string in my initial design but let's do that any, we may support more types here in the future, until generics are in, keep it any.
}
// Hosts is a switch provider.
// It can be used as input argument to the `Switch` function