mirror of
https://github.com/IceWhaleTech/CasaOS.git
synced 2025-06-16 05:55:33 +00:00
12 lines
221 B
Go
12 lines
221 B
Go
package utils
|
|
|
|
import "github.com/labstack/echo/v4"
|
|
|
|
func DefaultQuery(ctx echo.Context, key string, defaultValue string) string {
|
|
if value := ctx.QueryParam(key); value != "" {
|
|
return value
|
|
}
|
|
|
|
return defaultValue
|
|
}
|